kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.nanometer.smartlab.entity;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * Created by johnny on 17/11/23.
 */
@Getter
@Setter
@JsonIgnoreProperties(value = {"handler"})
public class OpeOrder implements Serializable {
 
    private Long id;
    private String orderCode;
    private String orderName;
    private ApplyStatus status;
    private Timestamp createTime;
    private Timestamp updateTime;
    private ValidFlag validFlag;
    private String memo;
    private Long consigneeUserId;
    private Long orderUserId;
    private Long supplierId;
    private String supplierName;
    private Timestamp arrivalTime;
    private Integer destoryFlag;
 
 
    //非数据库字段
    private String orderUserName;
    private String consigneeUserName;
    
 
    
 
 
}