hdy
3 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
76a2cd 1 package com.billion.main.da.domain;
H 2
3 import com.billion.common.annotation.Excel;
4 import com.fasterxml.jackson.annotation.JsonFormat;
5 import lombok.Data;
6
7 import java.util.Date;
8
9 /**
10  * 过站采集对象 da_station_collection
11  * 
12  * @author HDY
13  * @date 2025-02-12
14  */
15 @Data
51eb31 16 public class DaStationCollection
76a2cd 17 {
H 18     private static final long serialVersionUID = 1L;
19
20     /** 主键id */
21     private Long id;
22
23     /** 总成序列号 */
24     @Excel(name = "总成序列号")
25     private String sfcCode;
26
27     /** 工位编码 */
28     @Excel(name = "工位编码")
29     private String locationCode;
30
31     /** 进站时间 */
32     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
33     @Excel(name = "进站时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
34     private Date inboundTime;
35
36     /** 出站时间 */
37     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
38     @Excel(name = "出站时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
39     private Date outboundTime;
40
41     /** 状态(1合格0不合格) */
42     @Excel(name = "状态", readConverterExp = "1=合格0不合格")
43     private String status;
44
45     /** 采集时间 */
46     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
47     @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
48     private Date collectTime;
49
50
51 }