| | |
| | | package com.xzx.gc.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.xzx.gc.common.entity.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.Table; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | 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; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date isFinishTime; |
| | | |
| | | private String remark; |
| | | } |