id,
uuid,
checkpointname,
checkpointdatetime,
checkrecord_uuid,
checkrecord_id
/*c_time,
c_id,
u_time,
u_id,
version*/
INSERT INTO check_points
id,
uuid,
checkpointname,
checkpointdatetime,
checkrecord_uuid,
checkrecord_id,
c_time,
c_id,
u_time,
u_id,
version
#{id},
#{uuid},
#{checkPointName},
#{checkPointDatetime},
#{checkRecordsUuid},
#{checkRecordId},
#{cTime},
#{cId},
#{uTime},
#{uId},
#{version}
UPDATE check_points
checkpointname = #{checkPointName},
checkpointdatetime =#{checkPointDatetime},
checkrecord_uuid =#{checkRecordsUuid},
checkrecord_id =#{checkRecordId},
c_time= #{cTime} ,
c_id= #{cId} ,
u_time= #{uTime} ,
u_id= #{uId} ,
version= #{version}
WHERE id = #{id}
U UPDATE check_points
checkpointname = #{checkPointName},
checkpointdatetime =#{checkPointDatetime},
checkrecord_uuid =#{checkRecordsUuid},
checkrecord_id =#{checkRecordId},
c_time= #{cTime} ,
c_id= #{cId} ,
u_time= #{uTime} ,
u_id= #{uId} ,
version= #{version}
WHERE uuid = #{uuid}
DELETE FROM check_points
WHERE id = #{id}
DELETE FROM check_points WHERE id IN
#{item}