wujian
6 天以前 cd44522023ba6fece1d93670bfef5f73b5d09f57
提交 | 用户 | 时间
09ef66 1 package com.jcdm.main.work.domain;
W 2
3 import com.fasterxml.jackson.annotation.JsonFormat;
4 import lombok.Data;
5
6 import java.util.Date;
7
8 @Data
9 public class WorkOrder {
10
11     private Long id;
12
13     private String productNum;
14
15     private String stationCode;
16
17     private String materialCode;
18
19     private String productionOrderNum;
20
21     private String model;
22
23     /** 创建用户 */
24     private String createUser;
25
26     /** 更改用户 */
27     private String updateUser;
28
29     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
30     private Date createTime;
31
32     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
33     private Date updateTime;
34
35
36 }