| | |
| | | package com.matrix.system.activity.entity; |
| | | |
| | | import com.matrix.core.pojo.EntityDTO; |
| | | import com.matrix.system.score.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.matrix.core.anotations.Extend; |
| | | import com.matrix.system.score.entity.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @description 领 |
| | |
| | | |
| | | |
| | | /** |
| | | * openID |
| | | * userId |
| | | */ |
| | | |
| | | |
| | | private String openId; |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 领取时间 |
| | |
| | | private Long awardId; |
| | | |
| | | /** |
| | | * 是否已领取(1:待领取2:已领取) |
| | | * 是否已领取(1:待领取2:已领取 3:待配送 4:待收货 5:已失效) |
| | | */ |
| | | |
| | | |
| | | private Integer state; |
| | | |
| | | |
| | | public static final int STATE_ING = 1; |
| | | public static final int STATE_DONE = 2; |
| | | public static final int STATE_THREE = 3; |
| | | public static final int STATE_FOUR = 4; |
| | | public static final int STATE_FIVE = 5; |
| | | |
| | | /** |
| | | * 核销码 |
| | | */ |
| | |
| | | |
| | | private Long companyId; |
| | | |
| | | /** |
| | | * 收货人 |
| | | */ |
| | | private String consignee; |
| | | /** |
| | | * 联系电话 |
| | | */ |
| | | private String consigneePhone; |
| | | /** |
| | | * 收货地址 |
| | | */ |
| | | private String consigneeAddress; |
| | | |
| | | |
| | | |
| | | |