INSERT INTO my_beatician (
id,
beauticain_id,
vip_id,
type,
remark
)
VALUES (
#{id},
#{beauticainId},
#{vipId},
#{type},
#{remark}
)
INSERT INTO my_beatician (
beauticain_id,
vip_id,
type,
remark
)
VALUES
(
#{item.beauticainId},
#{vipId},
#{item.type},
#{item.remark})
UPDATE my_beatician
beauticain_id = #{beauticainId},
vip_id = #{vipId},
type = #{type},
remark = #{remark},
WHERE id=#{id}
delete from my_beatician where id in
#{item}
DELETE FROM my_beatician
where id=#{id}
DELETE FROM my_beatician
where 1=1
and id = #{record.id}
and beauticain_id = #{record.beauticainId}
and vip_id = #{record.vipId}
and type = #{record.type}
and remark = #{record.remark}