|  |  |  | 
|---|
|  |  |  | 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 Integer  state; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final int STATE_ING = 1; | 
|---|
|  |  |  | public static final int STATE_DONE = 2; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 核销码 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long  companyId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 收货人 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String  consignee; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 联系电话 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String  consigneePhone; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 收货地址 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String  consigneeAddress; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|