package com.lotaai.canguiayw.sqllitedb;
|
|
import org.greenrobot.greendao.annotation.Entity;
|
import org.greenrobot.greendao.annotation.Id;
|
import org.greenrobot.greendao.annotation.NotNull;
|
import org.greenrobot.greendao.annotation.Generated;
|
import org.greenrobot.greendao.annotation.Unique;
|
|
@Entity
|
public class Order {
|
@Id(autoincrement = true)
|
private Long id;
|
@Unique
|
private String orderId;
|
@Unique
|
private String orderNo;
|
@NotNull
|
private String gridNo;
|
@NotNull
|
private String xuHao;
|
@NotNull
|
private int state;//状态;0-未存餐 1-已存餐 2-已取餐 3-取消
|
private String putInDate;
|
private String takeCode;
|
private String createTime;
|
@Generated(hash = 295152111)
|
public Order(Long id, String orderId, String orderNo, @NotNull String gridNo,
|
@NotNull String xuHao, int state, String putInDate, String takeCode,
|
String createTime) {
|
this.id = id;
|
this.orderId = orderId;
|
this.orderNo = orderNo;
|
this.gridNo = gridNo;
|
this.xuHao = xuHao;
|
this.state = state;
|
this.putInDate = putInDate;
|
this.takeCode = takeCode;
|
this.createTime = createTime;
|
}
|
@Generated(hash = 1105174599)
|
public Order() {
|
}
|
public Long getId() {
|
return this.id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public String getOrderId() {
|
return this.orderId;
|
}
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
public String getOrderNo() {
|
return this.orderNo;
|
}
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
public String getGridNo() {
|
return this.gridNo;
|
}
|
public void setGridNo(String gridNo) {
|
this.gridNo = gridNo;
|
}
|
public String getXuHao() {
|
return this.xuHao;
|
}
|
public void setXuHao(String xuHao) {
|
this.xuHao = xuHao;
|
}
|
public int getState() {
|
return this.state;
|
}
|
public void setState(int state) {
|
this.state = state;
|
}
|
public String getPutInDate() {
|
return this.putInDate;
|
}
|
public void setPutInDate(String putInDate) {
|
this.putInDate = putInDate;
|
}
|
public String getTakeCode() {
|
return this.takeCode;
|
}
|
public void setTakeCode(String takeCode) {
|
this.takeCode = takeCode;
|
}
|
public String getCreateTime() {
|
return this.createTime;
|
}
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
}
|