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