mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
1、新增cad拆单支持部件不加工状态判定;2、加工/恢复部件顶级部分加工状态判定处理;
This commit is contained in:
+3
@@ -25,4 +25,7 @@ public class AssemblyConfigRespDTO {
|
||||
|
||||
@Schema(description = "结构Json")
|
||||
private String structureJson;
|
||||
|
||||
@Schema(description = "是否不加工")
|
||||
private Boolean notProcess;
|
||||
}
|
||||
|
||||
+3
@@ -30,4 +30,7 @@ public class AssemblyConfigRespVO {
|
||||
|
||||
@Schema(description = "结构json")
|
||||
private String structureJson;
|
||||
|
||||
@Schema(description = "是否不加工")
|
||||
private Boolean notProcess;
|
||||
}
|
||||
|
||||
+1
-1
@@ -513,7 +513,7 @@ public class AssemblyConfigServiceImpl implements AssemblyConfigService {
|
||||
.eq(AssemblyConfigDO::getStatus, AssemblyConfigStatusEnum.CONFIGURED.getStatus())
|
||||
.eq(AssemblyConfigDO::getDeleted, DeletedCodeEnum.NOT_DELETED.getStatus())
|
||||
.eq(AssemblyConfigDO::getNotProcess, true)
|
||||
.select(AssemblyConfigDO::getComponentName, AssemblyConfigDO::getStructureHash, AssemblyConfigDO::getStructureJson)
|
||||
.select(AssemblyConfigDO::getComponentName, AssemblyConfigDO::getStructureHash, AssemblyConfigDO::getStructureJson, AssemblyConfigDO::getNotProcess)
|
||||
);
|
||||
|
||||
return BeanUtil.copyToList(assemblyConfigDOS, AssemblyConfigRespVO.class);
|
||||
|
||||
Reference in New Issue
Block a user