feat(qc): 新增化学成分与物理性能检验字段

在质量检验证书项(QcCertificateItem)中新增以下字段:
1. 化学成分:铝(Al)、钛(Ti)、铬(Cr)、镍(Ni)、铜(Cu)、氮(N)、铁(Fe)、硼(B)
2. 物理性能:规定塑性延伸强度(plasticExtensionStrength)
3. 镀层信息:镀层表面结构(coatingSurfaceStructure)、镀层重量(coatingMass)

调整涉及实体类、业务对象、值对象及映射文件,确保字段在查询条件、导出模板中生效。
This commit is contained in:
2026-06-02 09:13:46 +08:00
parent 13780c635b
commit 14dbd633b5
5 changed files with 187 additions and 0 deletions

View File

@@ -20,13 +20,24 @@
<result property="p" column="p"/>
<result property="s" column="s"/>
<result property="als" column="als"/>
<result property="al" column="al"/>
<result property="ti" column="ti"/>
<result property="cr" column="cr"/>
<result property="ni" column="ni"/>
<result property="cu" column="cu"/>
<result property="n" column="n"/>
<result property="fe" column="fe"/>
<result property="b" column="b"/>
<result property="yieldStrength" column="yield_strength"/>
<result property="plasticExtensionStrength" column="plastic_extension_strength"/>
<result property="tensileStrength" column="tensile_strength"/>
<result property="elongation" column="elongation"/>
<result property="hardness" column="hardness"/>
<result property="bendingTest" column="bending_test"/>
<result property="surfaceQuality" column="surface_quality"/>
<result property="surfaceStructure" column="surface_structure"/>
<result property="coatingSurfaceStructure" column="coating_surface_structure"/>
<result property="coatingMass" column="coating_mass"/>
<result property="edgeStatus" column="edge_status"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>