select incomeId, customerId, incomeDate, incomeType, grossAmount, netAmount, taxAmount, rate, remark, delFlag, create_by, create_time, update_by, update_time from t_income
insert into t_income
customerId,
incomeDate,
incomeType,
grossAmount,
netAmount,
taxAmount,
rate,
remark,
delFlag,
create_by,
create_time,
update_by,
update_time,
#{customerId},
#{incomeDate},
#{incomeType},
#{grossAmount},
#{netAmount},
#{taxAmount},
#{rate},
#{remark},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update t_income
customerId = #{customerId},
incomeDate = #{incomeDate},
incomeType = #{incomeType},
grossAmount = #{grossAmount},
netAmount = #{netAmount},
taxAmount = #{taxAmount},
rate = #{rate},
remark = #{remark},
delFlag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where incomeId = #{incomeId}
delete from t_income where incomeId = #{incomeId}
delete from t_income where incomeId in
#{incomeId}