陈力
2023-06-14 ba96f2a660b7fe146e45e4a76ebc908776791b50
app/src/main/java/com/lotaai/canguiayw/sqllitedb/Order.java
@@ -11,6 +11,8 @@
    @Id(autoincrement = true)
    private Long id;
    @Unique
    private String orderId;
    @Unique
    private String orderNo;
    @NotNull
    private String gridNo;
@@ -21,11 +23,12 @@
    private String putInDate;
    private String takeCode;
    private String createTime;
    @Generated(hash = 1824136278)
    public Order(Long id, String orderNo, @NotNull String gridNo,
    @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;
@@ -43,6 +46,12 @@
    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;
    }