mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
getOrderSource获取优化数据接口补充加工组类型信息
This commit is contained in:
+7
-1
@@ -198,9 +198,15 @@ public class PlateDetailRespVO {
|
|||||||
@Schema(description = "加工组ID")
|
@Schema(description = "加工组ID")
|
||||||
private Long groupId;
|
private Long groupId;
|
||||||
|
|
||||||
@Schema(description = "加工组名称", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "加工组类型ID")
|
||||||
|
private Long groupTypeId;
|
||||||
|
|
||||||
|
@Schema(description = "加工组名称")
|
||||||
private String processGroupName;
|
private String processGroupName;
|
||||||
|
|
||||||
|
@Schema(description = "加工组类型名称")
|
||||||
|
private String processGroupTypeName;
|
||||||
|
|
||||||
|
|
||||||
@Schema(description = "开门类型,0 无 1 左 2 右 3 上 4 下", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
@Schema(description = "开门类型,0 无 1 左 2 右 3 上 4 下", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
||||||
private Integer openDoorType;
|
private Integer openDoorType;
|
||||||
|
|||||||
+7
@@ -268,6 +268,13 @@ public class PlateDetailDO {
|
|||||||
*/
|
*/
|
||||||
private Long groupId;
|
private Long groupId;
|
||||||
|
|
||||||
|
private Long groupTypeId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加工组名称
|
||||||
|
*/
|
||||||
|
private String processGroupTypeName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 加工组名称
|
* 加工组名称
|
||||||
*/
|
*/
|
||||||
|
|||||||
+2
@@ -480,9 +480,11 @@
|
|||||||
oi.body_id as bodyId,
|
oi.body_id as bodyId,
|
||||||
oi.room_id as roomId,
|
oi.room_id as roomId,
|
||||||
oi.group_id as groupId,
|
oi.group_id as groupId,
|
||||||
|
og.group_type_id as groupTypeId,
|
||||||
ob.name as bodyName,
|
ob.name as bodyName,
|
||||||
ob.room_name as roomName,
|
ob.room_name as roomName,
|
||||||
og.name as processGroupName,
|
og.name as processGroupName,
|
||||||
|
og.group_type_name as processGroupTypeName,
|
||||||
oc.name as componentName,
|
oc.name as componentName,
|
||||||
oc.id as componentId
|
oc.id as componentId
|
||||||
|
|
||||||
|
|||||||
+2
@@ -409,9 +409,11 @@
|
|||||||
oi.body_id,
|
oi.body_id,
|
||||||
oi.room_id,
|
oi.room_id,
|
||||||
oi.group_id,
|
oi.group_id,
|
||||||
|
og.group_type_id as groupTypeId,
|
||||||
ob.name as bodyName,
|
ob.name as bodyName,
|
||||||
ob.room_name,
|
ob.room_name,
|
||||||
og.name as processGroupName,
|
og.name as processGroupName,
|
||||||
|
og.group_type_name as processGroupTypeName,
|
||||||
oc.name as componentName,
|
oc.name as componentName,
|
||||||
oc.id as componentId
|
oc.id as componentId
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user