select id, customerCode, marjorId, createTime, status from b_customer_marjors
insert into b_customer_marjors
customerCode,marjorId,createTime,status,#{customerCode},#{marjorId},#{createTime},#{status},
update b_customer_marjors
customerCode = #{customerCode},marjorId = #{marjorId},createTime = #{createTime},status = #{status},
where id = #{id}
delete from b_customer_marjors where id = #{id}
delete from b_customer_marjors where id in
#{id}