id, sort, status, text, value, createdby, createddate, modifiedby, modifieddate,
description, typeid
delete from dictionaryitem
where id = #{id,jdbcType=BIGINT}
insert into dictionaryitem (id, sort, status,
text, value, createdby,
createddate, modifiedby, modifieddate,
description, typeid)
values (#{id,jdbcType=BIGINT}, #{sort,jdbcType=INTEGER}, #{status,jdbcType=TINYINT},
#{text,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR}, #{createdby,jdbcType=VARCHAR},
#{createddate,jdbcType=TIMESTAMP}, #{modifiedby,jdbcType=VARCHAR}, #{modifieddate,jdbcType=TIMESTAMP},
#{description,jdbcType=VARCHAR}, #{typeid,jdbcType=BIGINT})
insert into dictionaryitem
id,
sort,
status,
text,
value,
createdby,
createddate,
modifiedby,
modifieddate,
description,
typeid,
#{id,jdbcType=BIGINT},
#{sort,jdbcType=INTEGER},
#{status,jdbcType=TINYINT},
#{text,jdbcType=VARCHAR},
#{value,jdbcType=VARCHAR},
#{createdby,jdbcType=VARCHAR},
#{createddate,jdbcType=TIMESTAMP},
#{modifiedby,jdbcType=VARCHAR},
#{modifieddate,jdbcType=TIMESTAMP},
#{description,jdbcType=VARCHAR},
#{typeid,jdbcType=BIGINT},
update dictionaryitem
sort = #{sort,jdbcType=INTEGER},
status = #{status,jdbcType=TINYINT},
text = #{text,jdbcType=VARCHAR},
value = #{value,jdbcType=VARCHAR},
createdby = #{createdby,jdbcType=VARCHAR},
createddate = #{createddate,jdbcType=TIMESTAMP},
modifiedby = #{modifiedby,jdbcType=VARCHAR},
modifieddate = #{modifieddate,jdbcType=TIMESTAMP},
description = #{description,jdbcType=VARCHAR},
typeid = #{typeid,jdbcType=BIGINT},
where id = #{id,jdbcType=BIGINT}
update dictionaryitem
set sort = #{sort,jdbcType=INTEGER},
status = #{status,jdbcType=TINYINT},
text = #{text,jdbcType=VARCHAR},
value = #{value,jdbcType=VARCHAR},
createdby = #{createdby,jdbcType=VARCHAR},
createddate = #{createddate,jdbcType=TIMESTAMP},
modifiedby = #{modifiedby,jdbcType=VARCHAR},
modifieddate = #{modifieddate,jdbcType=TIMESTAMP},
description = #{description,jdbcType=VARCHAR},
typeid = #{typeid,jdbcType=BIGINT}
where id = #{id,jdbcType=BIGINT}