春风项目四线(合箱线、总装线)
wujian
2024-07-26 778d3d8b387ca0a8d1b51ef68f783fb0b407ef20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.jcdm.main.da.passingStationCollection.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class ProductNewPassStation {
 
    private Long id;
 
    private String sfcCode;
 
    private String rodCode;
 
    private String balanceCode;
 
    private String finishFlag;
 
    private String productType;
 
    private String boxCode;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
}