Browse Source
2025-07-10
2025-07-10
1、印前工序模版调整
1、取消现有的字段,使用列表方式
1.1 列表字段:看图(需要中英文)
2、带出该物料对应版本、替代的刀具信息
2.1 根据Routing中的工艺指导的类型是Plate No.带到印版编号/PlateNo
2.2 根据版本+替代带出Routing Tools的工具编码、工具名称
2.3 根据该工具属性编码为"Number across、Number down"的属性值
master
7 changed files with 418 additions and 55 deletions
-
68src/main/java/com/spring/modules/sampleManagement/controller/TechnicalSpecificationController.java
-
22src/main/java/com/spring/modules/sampleManagement/dao/TechnicalSpecificationMapper.java
-
4src/main/java/com/spring/modules/sampleManagement/data/PlmBmPrepressData.java
-
65src/main/java/com/spring/modules/sampleManagement/entity/PlmBmPrepressTool.java
-
146src/main/java/com/spring/modules/sampleManagement/service/Impl/TechnicalSpecificationServiceImpl.java
-
14src/main/java/com/spring/modules/sampleManagement/service/TechnicalSpecificationService.java
-
154src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml
@ -1,11 +1,15 @@ |
|||
package com.spring.modules.sampleManagement.data; |
|||
|
|||
import com.spring.modules.sampleManagement.entity.PlmBmPrepress; |
|||
import com.spring.modules.sampleManagement.entity.PlmBmPrepressTool; |
|||
import lombok.Data; |
|||
import org.apache.ibatis.type.Alias; |
|||
|
|||
import java.util.List; |
|||
|
|||
@Data |
|||
@Alias("PlmBmPrepressData") |
|||
public class PlmBmPrepressData extends PlmBmPrepress { |
|||
|
|||
List<PlmBmPrepressTool> toolList; |
|||
} |
|||
@ -0,0 +1,65 @@ |
|||
package com.spring.modules.sampleManagement.entity; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
@TableName("plm_bm_prepress_tool") |
|||
public class PlmBmPrepressTool { |
|||
/** |
|||
* Site |
|||
*/ |
|||
private String site; |
|||
/** |
|||
* 技术参数卡编码 |
|||
*/ |
|||
private String codeNo; |
|||
/** |
|||
* 序号(数据库) |
|||
*/ |
|||
private Integer itemNo; |
|||
/** |
|||
* 序号(用户) |
|||
*/ |
|||
private Integer seqNo; |
|||
/** |
|||
* 工具编码 |
|||
*/ |
|||
private String toolId; |
|||
/** |
|||
* 工具描述 |
|||
*/ |
|||
private String toolDesc; |
|||
/** |
|||
* 横排数 |
|||
*/ |
|||
private String numberAcross; |
|||
/** |
|||
* 竖排数 |
|||
*/ |
|||
private String numberDown; |
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|||
private Date createDate; |
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createBy; |
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|||
private Date updateDate; |
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updateBy; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue