This commit is contained in:
jhd
2026-06-02 13:52:06 +08:00
89 changed files with 7529 additions and 1892 deletions

View File

@@ -213,5 +213,20 @@ public class WmsMaterialCoil extends BaseEntity {
private Long specId;
private Long versionId;
/**
* 理论厚度(单位:毫米)
*/
private BigDecimal theoreticalThickness;
/**
* 理论长度(单位:米)
*/
private BigDecimal theoreticalLength;
/**
* 镀铬卷号
*/
private String chromePlateCoilNo;
}

View File

@@ -381,5 +381,26 @@ public class WmsMaterialCoilBo extends BaseEntity {
private Long specId;
private Long versionId;
/**
* 理论厚度(单位:毫米)
*/
private BigDecimal theoreticalThickness;
/**
* 理论长度(单位:米)
*/
private BigDecimal theoreticalLength;
/**
* 镀铬卷号
*/
private String chromePlateCoilNo;
/**
* 是否按计划创建时间倒序排序已绑定钢卷列表无planId时按计划新旧排列
*/
@TableField(exist = false)
private Boolean orderByPlanDesc;
}

View File

@@ -208,4 +208,22 @@ public class WmsMaterialCoilExportVo {
*/
@ExcelProperty(value = "调拨类型")
private String transferType;
/**
* 理论厚度(单位:毫米)
*/
@ExcelProperty(value = "理论厚度")
private BigDecimal theoreticalThickness;
/**
* 理论长度(单位:米)
*/
@ExcelProperty(value = "理论长度")
private BigDecimal theoreticalLength;
/**
* 镀铬卷号
*/
@ExcelProperty(value = "镀铬卷号")
private String chromePlateCoilNo;
}

View File

@@ -339,5 +339,20 @@ public class WmsMaterialCoilVo extends BaseEntity {
private Long versionId;
private String specCode;
private String versionCode;
/**
* 理论厚度(单位:毫米)
*/
private BigDecimal theoreticalThickness;
/**
* 理论长度(单位:米)
*/
private BigDecimal theoreticalLength;
/**
* 镀铬卷号
*/
private String chromePlateCoilNo;
}