xiaoyong931011
2021-11-09 01eef3efb95945e47f0864253d96bfdc2a5e418a
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.xzx.gc.entity;
 
 
import com.xzx.gc.common.entity.BaseEntity;
import lombok.Data;
 
import javax.persistence.Table;
import java.util.Date;
 
@Data
@Table(name = "xzx_jhy_order")
public class JhyOrder extends BaseEntity {
 
    private String userId;
 
    private String orderNo;
 
    private String username;
 
    private String phone;
 
    private String area;
 
    private String address;
 
    private Date reserveDate;
 
    private String reserveTime;
 
    private Date receivingTime;
 
    private String longitude;
 
    private String latitude;
 
    private String weight;
 
    /**
     * 订单状态 状态 1-待接单2-已接单3-已完成(用户)/待入库(集物员)5-已取消
     */
    private Integer status;
    public static final Integer ORDER_STATUS_WAITING = 1;
    public static final Integer ORDER_STATUS_IMG = 2;
    public static final Integer ORDER_STATUS_CONFIRM = 3;
    public static final Integer ORDER_STATUS_CANCEL = 5;
 
    /**
     * 评论
     */
    private String comment;
 
    /**
     * 分数
     */
    private Integer score;
 
    /**
     * 是否匿名 1-是 2-否
     */
    private Integer isAnonymous;
 
    /**
     * 是否已评论 1-是 2-否
     */
    private Integer isCommented;
 
    private String remark;
 
    /**
     * 集物员ID
     */
    private String jhyId;
    private String unitName;
    private String houseNumber;
 
}