feat(wms): 更新钢卷异常实体类增加缺陷详细信息字段
- 将lengthCoord字段替换为length、startPosition、endPosition三个精确数值字段 - 新增defectType缺陷类型字段用于详细分类(如划痕、边裂、厚度超标等) - 新增defectRate缺陷率字段用于记录百分比数据 - 新增defectWeight缺陷重量字段用于记录具体重量值 - 新增mainMark主标记字段标识是否为主要缺陷 - 新增wholeCoilMark整卷标记字段标识是否影响整卷 - 更新Mapper映射文件适配新的实体字段结构 - 更新查询条件构造器支持新增字段的筛选功能 - 更新VO类Excel导出配置适配新的业务字段需求
This commit is contained in:
@@ -8,12 +8,19 @@
|
||||
<result property="abnormalId" column="abnormal_id"/>
|
||||
<result property="coilId" column="coil_id"/>
|
||||
<result property="position" column="position"/>
|
||||
<result property="lengthCoord" column="length_coord"/>
|
||||
<result property="length" column="length"/>
|
||||
<result property="startPosition" column="start_position"/>
|
||||
<result property="endPosition" column="end_position"/>
|
||||
<result property="defectCode" column="defect_code"/>
|
||||
<result property="defectType" column="defect_type"/>
|
||||
<result property="defectRate" column="defect_rate"/>
|
||||
<result property="defectWeight" column="defect_weight"/>
|
||||
<result property="degree" column="degree"/>
|
||||
<result property="judgeLevel" column="judge_level"/>
|
||||
<result property="judgeBy" column="judge_by"/>
|
||||
<result property="judgeTime" column="judge_time"/>
|
||||
<result property="mainMark" column="main_mark"/>
|
||||
<result property="wholeCoilMark" column="whole_coil_mark"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
|
||||
Reference in New Issue
Block a user