| New file |
| | |
| | | package com.xzx.gc.entity; |
| | | |
| | | |
| | | import com.xzx.gc.common.entity.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.Table; |
| | | |
| | | @Data |
| | | @Table(name = "xzx_jhy_info") |
| | | public class JhyInfo extends BaseEntity { |
| | | |
| | | private String userId; |
| | | |
| | | private String username; |
| | | |
| | | private String gender; |
| | | |
| | | private String mobile; |
| | | |
| | | private String identity; |
| | | |
| | | private String address; |
| | | |
| | | private String lon; |
| | | |
| | | private String lat; |
| | | |
| | | private String cardPos; |
| | | |
| | | /** |
| | | * 是否集物员 1-是 2-否 |
| | | */ |
| | | private String isJyh; |
| | | } |
| New file |
| | |
| | | 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 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-已收款4-待入库5-已完成6-已取消 |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 评论 |
| | | */ |
| | | private String comment; |
| | | |
| | | /** |
| | | * 分数 |
| | | */ |
| | | private Integer score; |
| | | |
| | | /** |
| | | * 是否匿名 1-是 2-否 |
| | | */ |
| | | private Integer isAnonymous; |
| | | |
| | | /** |
| | | * 是否已评论 1-是 2-否 |
| | | */ |
| | | private Integer isCommented; |
| | | |
| | | private String remark; |
| | | |
| | | /** |
| | | * 集物员ID |
| | | */ |
| | | private String jyhId; |
| | | |
| | | } |
| New file |
| | |
| | | package com.xzx.gc.entity; |
| | | |
| | | import com.xzx.gc.common.entity.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.Table; |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @Table(name = "xzx_jhy_order_items") |
| | | public class JhyOrderItems extends BaseEntity { |
| | | |
| | | private Long orderId; |
| | | |
| | | private String title; |
| | | |
| | | private BigDecimal price; |
| | | |
| | | private String picture; |
| | | |
| | | private String remark; |
| | | |
| | | private BigDecimal weight; |
| | | |
| | | private String score; |
| | | } |