insert into t_dict(
table_columns,name,description,status_cd,table_name
) values (
#{tableColumns},#{name},#{description},#{statusCd},#{tableName}
)
update t_dict t
t.status_cd = #{statusCd},
t.table_columns= #{tableColumns},
t.name= #{name},
t.description= #{description},
t.table_name= #{tableName}
where 1=1
and t.id= #{id}
delete from t_dict
where 1=1
and id= #{id}