mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 05:12:07 +08:00
新增webcad生产单导入:1、移除封边条配件对应逻辑;2、新增封边条宽度通过系统配置匹配宽度值逻辑;
This commit is contained in:
+3
@@ -55,4 +55,7 @@ public interface SystemConfigApi {
|
||||
@Operation(summary = "查询组织的混单是否开启")
|
||||
CommonResult<Boolean> getMultiColorConfigStatus();
|
||||
|
||||
@GetMapping(PREFIX + "/organ/sealedge-config")
|
||||
@Operation(summary = "获取组织下封边条对应配置")
|
||||
CommonResult<List<SystemConfigRespDTO>> getOrgSealEdgeConfig();
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
package com.cf.imes.module.system.api.systemconfig.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Gqr
|
||||
* @since 2025/3/21 11:16
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class SystemConfigSealEdgeRespDTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 4599625605797146076L;
|
||||
|
||||
/**
|
||||
* 宽最小值
|
||||
*/
|
||||
private int widthMin;
|
||||
|
||||
/**
|
||||
* 宽最大值
|
||||
*/
|
||||
private int widthMax;
|
||||
|
||||
/**
|
||||
* 宽取值a
|
||||
*/
|
||||
private int widthValue;
|
||||
}
|
||||
Reference in New Issue
Block a user