ID,
DICT_TYPE_CD,
DICT_TYPE_DESC,
DEFAULT_VAL,
FLAG_VALID,
OWNER_OFC,
OWNER_SYSTEM
#{id},
#{dictTypeCd},
#{dictTypeDesc},
#{defaultVal},
#{flagValid},
#{ownerOfc},
#{ownerSystem}
and DICT_TYPE_CD = #{dictTypeCd}
and DICT_TYPE_DESC = #{dictTypeDesc}
and DEFAULT_VAL = #{defaultVal}
and FLAG_VALID = #{flagValid}
and OWNER_OFC = #{ownerOfc}
and OWNER_SYSTEM = #{ownerSystem}
insert into GW_COM_DICT_TYPE(
)
values (
)
delete from GW_COM_DICT_TYPE where ID = #{id}
update GW_COM_DICT_TYPE set DATA_STAT='9'
update GW_COM_DICT_TYPE set DATA_STAT = '9' where ID = #{id}
update GW_COM_DICT_TYPE
DICT_TYPE_CD = #{dictTypeCd},
DICT_TYPE_DESC = #{dictTypeDesc},
DEFAULT_VAL = #{defaultVal},
FLAG_VALID = #{flagValid},
OWNER_OFC = #{ownerOfc},
OWNER_SYSTEM = #{ownerSystem},
ID = #{id}
update GW_COM_DICT_TYPE
DICT_TYPE_CD = #{dictTypeCd},
DICT_TYPE_DESC = #{dictTypeDesc},
DEFAULT_VAL = #{defaultVal},
FLAG_VALID = #{flagValid},
OWNER_OFC = #{ownerOfc},
OWNER_SYSTEM = #{ownerSystem},