| package com.xzx.gc.entity; | 
|   | 
| import com.xzx.gc.common.entity.BaseEntity; | 
| import lombok.Data; | 
|   | 
| import javax.persistence.Table; | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-06-21 | 
|  **/ | 
| @Data | 
| @Table(name = "xzx_score_order") | 
| public class ScoreOrder extends BaseEntity { | 
|   | 
|     private String orderNo; | 
|   | 
|     private String goodsName; | 
|   | 
|     private String userId; | 
|   | 
|     private String voucherImg; | 
|   | 
|     private Integer cnt; | 
|   | 
|     private BigDecimal totalPrice; | 
|   | 
|     /** | 
|      * 1-待发货2-待收货3-已收货4-已完成5-已评价6-已取消 | 
|      */ | 
|     private Integer status; | 
|     public  static final Integer STATUS_READY = 1; | 
|     public  static final Integer STATUS_ON = 2; | 
|     public  static final Integer STATUS_DOING = 3; | 
|     public  static final Integer STATUS_DONE = 4; | 
|     public  static final Integer STATUS_EVALUATE = 5; | 
|     public  static final Integer STATUS_CANCEL = 6; | 
|   | 
|     /** | 
|      * 后台确认提货  1:是  2:否 | 
|      */ | 
|     private Integer isFinish; | 
|     public  static final Integer ISFINISH_YES = 1; | 
|     public  static final Integer ISFINISH_NO = 2; | 
|   | 
|     private String remark; | 
| } |