select INSPECTION_ID, MODEL_ID, INSPECTION_TIME, MODEL_SCORE, CREATE_BY, CREATE_TIME, UPDATE_BY, UPDATE_TIME, REMARK
from biz_inspection
insert into biz_inspection
MODEL_ID,
INSPECTION_TIME,
MODEL_SCORE,
CREATE_BY,
CREATE_TIME,
UPDATE_BY,
UPDATE_TIME,
REMARK,
#{modelId},
#{inspectionTime},
#{modelScore},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update biz_inspection
MODEL_ID =
#{modelId},
INSPECTION_TIME =
#{inspectionTime},
MODEL_SCORE =
#{modelScore},
CREATE_BY =
#{createBy},
CREATE_TIME =
#{createTime},
UPDATE_BY =
#{updateBy},
UPDATE_TIME =
#{updateTime},
REMARK =
#{remark},
where INSPECTION_ID = #{inspectionId}
delete
from biz_inspection where INSPECTION_ID = #{inspectionId}
delete from biz_inspection where INSPECTION_ID in
#{inspectionId}