mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 13:42:07 +08:00
订单部件cadinfo分页接口部分属性补充
This commit is contained in:
+3
@@ -28,6 +28,9 @@ public class OrderViewPlatePageRespVO {
|
|||||||
@Schema(description = "板件编号")
|
@Schema(description = "板件编号")
|
||||||
private String plateNo;
|
private String plateNo;
|
||||||
|
|
||||||
|
@Schema(description = "自定义板编号")
|
||||||
|
private String customPlateNo;
|
||||||
|
|
||||||
@Schema(description = "板件名称")
|
@Schema(description = "板件名称")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
|||||||
+5
@@ -126,4 +126,9 @@ public class OrderBodyViewPlatesPageDO {
|
|||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自定义板编号
|
||||||
|
*/
|
||||||
|
private String customPlateNo;
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -535,13 +535,13 @@
|
|||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectBodyViewPlatesPage" resultType="com.cf.imes.module.executor.dal.dataobject.orderItem.OrderBodyViewPlatesPageDO">
|
<select id="selectBodyViewPlatesPage" resultType="com.cf.imes.module.executor.dal.dataobject.orderItem.OrderBodyViewPlatesPageDO">
|
||||||
SELECT p.plate_no, p.name, p.width, p.height, p.thickness, g.material, g.color, p.cad_plate_no as customNumber, p.id, i.body_id, p.cad_view_id
|
SELECT p.plate_no, p.name, p.width, p.height, p.thickness, g.material, g.color, p.custom_plate_no, p.cad_plate_no as customNumber, p.id, i.body_id, p.cad_view_id
|
||||||
<choose>
|
<choose>
|
||||||
<when test="cadView">
|
<when test="cadView">
|
||||||
, p.seal_left, p.seal_down, p.seal_right, p.seal_up
|
, p.seal_left, p.seal_down, p.seal_right, p.seal_up
|
||||||
</when>
|
</when>
|
||||||
<otherwise>
|
<otherwise>
|
||||||
, p.area, p.texture, p.is_special_shaped, p.is_sculpt, p.is_row_hole, p.remark
|
, p.seal_left, p.seal_down, p.seal_right, p.seal_up, p.area, p.texture, p.is_special_shaped, p.is_sculpt, p.is_row_hole, p.remark
|
||||||
</otherwise>
|
</otherwise>
|
||||||
</choose>
|
</choose>
|
||||||
<if test="componentIds != null and componentIds.size() > 0">
|
<if test="componentIds != null and componentIds.size() > 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user