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;
|
|
|
|
|
|
}
|