select id, par_code, par_name, par_value, par_unit,par_Type,par_field,p.status, p.remark, p.create_by, p.create_time, p.update_by, p.update_time from pdm_par p
select id, par_code, par_name, par_value, par_unit, dict_label par_unit_cn,par_Type,par_field,p.status, p.remark, p.create_by, p.create_time, p.update_by, p.update_time from pdm_par p
insert into pdm_par
par_code,
par_name,
par_value,
par_unit,
par_type,
par_field,
status,
remark,
create_by,
create_time,
update_by,
update_time,
#{parCode},
#{parName},
#{parValue},
#{parUnit},
#{parType},
#{parField},
#{status},
#{remark},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update pdm_par
par_code = #{parCode},
par_name = #{parName},
par_value = #{parValue},
par_unit = #{parUnit},
par_type = #{parType},
par_field=#{parField},
status = #{status},
remark = #{remark},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from pdm_par where id = #{id}
delete from pdm_par where id in
#{id}