From c253b555c7905c5136d47cd615ef545fa50cc6ad Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Sun, 20 Feb 2022 21:24:16 +0800 Subject: [PATCH] Merge branch 'api_score_meger' --- zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 103 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..07a2563 --- /dev/null +++ b/zq-erp/src/main/java/com/matrix/system/activity/entity/ActivitySignReceiveRecord.java @@ -0,0 +1,103 @@ +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:已领取 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 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