From 95f9ea7eb339c36cade6c67d0385c49ec2d81477 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Wed, 14 Apr 2021 19:39:45 +0800 Subject: [PATCH] Merge branch 'score_shop' into api_score_meger --- zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 100 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java b/zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java new file mode 100644 index 0000000..f59cb27 --- /dev/null +++ b/zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java @@ -0,0 +1,100 @@ +package com.matrix.system.activity.entity; + +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; + +/** + * @description 领 + * @author yourName + * @date 2021-03-31 16:57 + */ +@Data +@TableName("activity_sign_receive_record") +public class ActivitySignReceiveRecord extends BaseEntity{ + @Extend + private static final long serialVersionUID = 1L; + + + + + + /** + * userId + */ + + + private Long userId; + + /** + * 领取时间 + */ + + + private Date receiveTime; + + /** + * 备注 + */ + + + private String remark; + + /** + * 奖品设置表ID + */ + + + private Long awardId; + + /** + * 是否已领取(1:待领取2:已领取) + */ + + + private Integer state; + + public static final int STATE_ING = 1; + public static final int STATE_DONE = 2; + + /** + * 核销码 + */ + + + private String writeOffCode; + + /** + * 活动主表ID + */ + + + private Long activityId; + + /** + * 公司ID + */ + + + private Long companyId; + + /** + * 收货人 + */ + private String consignee; + /** + * 联系电话 + */ + private String consigneePhone; + /** + * 收货地址 + */ + private String consigneeAddress; + + + + +} \ No newline at end of file -- Gitblit v1.9.1