mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 05:12:07 +08:00
板件信息缺失字段补充、预留边字段补充
This commit is contained in:
+1
-1
@@ -84,7 +84,7 @@ public class PlateDetailsRespVO {
|
||||
|
||||
@Schema(description = "异形")
|
||||
@ExcelProperty("异形")
|
||||
private Boolean specialShaped;
|
||||
private Boolean isSpecialShaped;
|
||||
|
||||
@Schema(description = "正反面造型")
|
||||
@ExcelProperty("正反面造型")
|
||||
|
||||
+11
@@ -108,6 +108,17 @@ public class PlateDetailRespVO {
|
||||
@Schema(description = "下封边厚度", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
private BigDecimal sealDown;
|
||||
|
||||
@Schema(description = "左预留边")
|
||||
private BigDecimal reservedEdgeLeft;
|
||||
|
||||
@Schema(description = "右预留边")
|
||||
private BigDecimal reservedEdgeRight;
|
||||
|
||||
@Schema(description = "上预留边")
|
||||
private BigDecimal reservedEdgeUp;
|
||||
|
||||
@Schema(description = "下预留边")
|
||||
private BigDecimal reservedEdgeDown;
|
||||
|
||||
@Schema(description = "面积", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
private BigDecimal area;
|
||||
|
||||
+12
@@ -73,6 +73,18 @@ public class OrderViewPlatePageRespVO {
|
||||
@Schema(description = "下封边厚度")
|
||||
private BigDecimal sealDown;
|
||||
|
||||
@Schema(description = "左预留边")
|
||||
private BigDecimal reservedEdgeLeft;
|
||||
|
||||
@Schema(description = "右预留边")
|
||||
private BigDecimal reservedEdgeRight;
|
||||
|
||||
@Schema(description = "上预留边")
|
||||
private BigDecimal reservedEdgeUp;
|
||||
|
||||
@Schema(description = "下预留边")
|
||||
private BigDecimal reservedEdgeDown;
|
||||
|
||||
@Schema(description = "材质")
|
||||
private String material;
|
||||
|
||||
|
||||
+20
@@ -92,6 +92,26 @@ public class OrdersViewPlatesPageDO {
|
||||
*/
|
||||
private BigDecimal sealDown;
|
||||
|
||||
/**
|
||||
* 左预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeLeft;
|
||||
|
||||
/**
|
||||
* 右预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeRight;
|
||||
|
||||
/**
|
||||
* 上预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeUp;
|
||||
|
||||
/**
|
||||
* 下预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeDown;
|
||||
|
||||
/**
|
||||
* 材质
|
||||
*/
|
||||
|
||||
+20
@@ -148,6 +148,26 @@ public class PlateDetailDO {
|
||||
*/
|
||||
private BigDecimal sealDown;
|
||||
|
||||
/**
|
||||
* 左预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeLeft;
|
||||
|
||||
/**
|
||||
* 右预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeRight;
|
||||
|
||||
/**
|
||||
* 上预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeUp;
|
||||
|
||||
/**
|
||||
* 下预留边
|
||||
*/
|
||||
private BigDecimal reservedEdgeDown;
|
||||
|
||||
/**
|
||||
* 面积
|
||||
*/
|
||||
|
||||
+50
-47
@@ -460,6 +460,10 @@
|
||||
op.seal_right as sealRight,
|
||||
op.seal_up as sealUp,
|
||||
op.seal_down as sealDown,
|
||||
op.reserved_edge_left AS reservedEdgeLeft,
|
||||
op.reserved_edge_right AS reservedEdgeRight,
|
||||
op.reserved_edge_up AS reservedEdgeUp,
|
||||
op.reserved_edge_down AS reservedEdgeDown,
|
||||
op.area as area,
|
||||
op.texture as texture,
|
||||
op.hole_face as holeFace,
|
||||
@@ -572,6 +576,10 @@
|
||||
op.seal_right as sealRight,
|
||||
op.seal_up as sealUp,
|
||||
op.seal_down as sealDown,
|
||||
op.reserved_edge_left AS reservedEdgeLeft,
|
||||
op.reserved_edge_right AS reservedEdgeRight,
|
||||
op.reserved_edge_up AS reservedEdgeUp,
|
||||
op.reserved_edge_down AS reservedEdgeDown,
|
||||
op.area as area,
|
||||
op.texture as texture,
|
||||
op.hole_face as holeFace,
|
||||
@@ -1039,7 +1047,7 @@
|
||||
<result property="thickness" column="plateThickness"/>
|
||||
<result property="area" column="plateArea"/>
|
||||
<result property="texture" column="texture"/>
|
||||
<result property="specialShaped" column="specialShaped"/>
|
||||
<result property="isSpecialShaped" column="isSpecialShaped"/>
|
||||
<result property="isSculpt" column="isSculpt"/>
|
||||
<result property="isRowHole" column="isRowHole"/>
|
||||
<result property="remark" column="remark"/>
|
||||
@@ -1113,7 +1121,6 @@
|
||||
|
||||
|
||||
<select id="selectOrdersPackPlateList"
|
||||
parameterType="java.lang.Long"
|
||||
resultMap="PlateDetailsMap">
|
||||
SELECT
|
||||
og.name AS processGroup,
|
||||
@@ -1142,22 +1149,18 @@
|
||||
op.texture,
|
||||
op.remark,
|
||||
|
||||
op.is_special_shaped AS specialShaped,
|
||||
op.is_sculpt AS isSculpt,
|
||||
op.is_row_hole AS isRowHole,
|
||||
op.front_hole_count AS frontHoleCount,
|
||||
op.back_hole_count AS backHoleCount,
|
||||
op.side_hole_count AS sideHoleCount,
|
||||
op.open_door_type AS openDoorType,
|
||||
op.is_side_sculpt AS isSideSculpt,
|
||||
op.is_2v AS is2v,
|
||||
op.is_side_2v AS isSide2v,
|
||||
op.split_width AS splitWidth,
|
||||
op.split_height AS splitHeight,
|
||||
op.hole_face as holeFace,
|
||||
op.hole_arrange as holeArrange,
|
||||
op.open_door_type as openDoorType,
|
||||
op.split_width as splitWidth,
|
||||
op.split_height as splitHeight,
|
||||
op.seal_left AS sealLeft,
|
||||
op.seal_right AS sealRight,
|
||||
op.seal_up AS sealUp,
|
||||
op.seal_down AS sealDown
|
||||
op.seal_down AS sealDown,
|
||||
op.is_sculpt AS isSculpt,
|
||||
CASE WHEN op.unregular_point_count > 0 THEN 1 ELSE 0 END AS isSpecialShaped,
|
||||
op.is_row_hole AS isRowHole
|
||||
|
||||
FROM order_plate op
|
||||
|
||||
@@ -1233,22 +1236,18 @@
|
||||
op.texture,
|
||||
op.remark,
|
||||
|
||||
op.is_special_shaped AS specialShaped,
|
||||
op.is_sculpt AS isSculpt,
|
||||
op.is_row_hole AS isRowHole,
|
||||
op.front_hole_count AS frontHoleCount,
|
||||
op.back_hole_count AS backHoleCount,
|
||||
op.side_hole_count AS sideHoleCount,
|
||||
op.open_door_type AS openDoorType,
|
||||
op.is_side_sculpt AS isSideSculpt,
|
||||
op.is_2v AS is2v,
|
||||
op.is_side_2v AS isSide2v,
|
||||
op.split_width AS splitWidth,
|
||||
op.split_height AS splitHeight,
|
||||
op.seal_left AS sealLeft,
|
||||
op.seal_right AS sealRight,
|
||||
op.seal_up AS sealUp,
|
||||
op.seal_down AS sealDown
|
||||
op.hole_face as holeFace,
|
||||
op.hole_arrange as holeArrange,
|
||||
op.open_door_type as openDoorType,
|
||||
op.split_width as splitWidth,
|
||||
op.split_height as splitHeight,
|
||||
op.seal_left AS sealLeft,
|
||||
op.seal_right AS sealRight,
|
||||
op.seal_up AS sealUp,
|
||||
op.seal_down AS sealDown,
|
||||
CASE WHEN op.unregular_point_count > 0 THEN 1 ELSE 0 END AS isSpecialShaped,
|
||||
op.is_sculpt AS isSculpt,
|
||||
op.is_row_hole AS isRowHole
|
||||
|
||||
FROM order_item oi
|
||||
|
||||
@@ -1323,22 +1322,18 @@
|
||||
op.texture,
|
||||
op.remark,
|
||||
|
||||
op.is_special_shaped AS specialShaped,
|
||||
op.is_sculpt AS profiling,
|
||||
op.is_row_hole AS rowHole,
|
||||
op.front_hole_count AS frontHoleCount,
|
||||
op.back_hole_count AS backHoleCount,
|
||||
op.side_hole_count AS sideHoleCount,
|
||||
op.open_door_type AS openDoorType,
|
||||
op.is_side_sculpt AS isSideSculpt,
|
||||
op.is_2v AS is2v,
|
||||
op.is_side_2v AS isSide2v,
|
||||
op.split_width AS splitWidth,
|
||||
op.split_height AS splitHeight,
|
||||
op.seal_left AS sealLeft,
|
||||
op.seal_right AS sealRight,
|
||||
op.seal_up AS sealUp,
|
||||
op.seal_down AS sealDown
|
||||
op.hole_face as holeFace,
|
||||
op.hole_arrange as holeArrange,
|
||||
op.open_door_type as openDoorType,
|
||||
op.split_width as splitWidth,
|
||||
op.split_height as splitHeight,
|
||||
op.seal_left AS sealLeft,
|
||||
op.seal_right AS sealRight,
|
||||
op.seal_up AS sealUp,
|
||||
op.seal_down AS sealDown,
|
||||
CASE WHEN op.unregular_point_count > 0 THEN 1 ELSE 0 END AS isSpecialShaped,
|
||||
op.is_sculpt AS isSculpt,
|
||||
op.is_row_hole AS isRowHole
|
||||
|
||||
FROM order_item oi
|
||||
|
||||
@@ -1506,6 +1501,10 @@
|
||||
p.seal_down,
|
||||
p.seal_right,
|
||||
p.seal_up,
|
||||
p.reserved_edge_left AS reservedEdgeLeft,
|
||||
p.reserved_edge_right AS reservedEdgeRight,
|
||||
p.reserved_edge_up AS reservedEdgeUp,
|
||||
p.reserved_edge_down AS reservedEdgeDown,
|
||||
p.area,
|
||||
p.texture,
|
||||
(p.unregular_point_count > 0 ) AS isSpecialShaped,
|
||||
@@ -1639,6 +1638,10 @@
|
||||
p.seal_down,
|
||||
p.seal_right,
|
||||
p.seal_up,
|
||||
p.reserved_edge_left AS reservedEdgeLeft,
|
||||
p.reserved_edge_right AS reservedEdgeRight,
|
||||
p.reserved_edge_up AS reservedEdgeUp,
|
||||
p.reserved_edge_down AS reservedEdgeDown,
|
||||
p.area,
|
||||
p.texture,
|
||||
(p.unregular_point_count > 0 ) AS isSpecialShaped,
|
||||
|
||||
Reference in New Issue
Block a user