ID, statusID, statusDT, personID, placeID
delete from t_checking
where ID = #{id,jdbcType=INTEGER}
insert into t_checking (ID, statusID, statusDT,
personID, placeID)
values (#{id,jdbcType=INTEGER}, #{statusid,jdbcType=TINYINT}, #{statusdt,jdbcType=TIMESTAMP},
#{personid,jdbcType=INTEGER}, #{placeid,jdbcType=INTEGER})
insert into t_checking
ID,
statusID,
statusDT,
personID,
placeID,
#{id,jdbcType=INTEGER},
#{statusid,jdbcType=TINYINT},
#{statusdt,jdbcType=TIMESTAMP},
#{personid,jdbcType=INTEGER},
#{placeid,jdbcType=INTEGER},
update t_checking
statusID = #{statusid,jdbcType=TINYINT},
statusDT = #{statusdt,jdbcType=TIMESTAMP},
personID = #{personid,jdbcType=INTEGER},
placeID = #{placeid,jdbcType=INTEGER},
where ID = #{id,jdbcType=INTEGER}
update t_checking
set statusID = #{statusid,jdbcType=TINYINT},
statusDT = #{statusdt,jdbcType=TIMESTAMP},
personID = #{personid,jdbcType=INTEGER},
placeID = #{placeid,jdbcType=INTEGER}
where ID = #{id,jdbcType=INTEGER}