package com.dsh.account.feignclient.activity.model; import lombok.Data; import java.util.Date; /** *
* 用户优惠券领取记录 *
* * @author jqs * @since 2023-06-29 */ @Data public class UserCoupon { private static final long serialVersionUID = 1L; /** * 主键 */ private Long id; /** * 优惠券id */ private Integer couponId; /** * 用户id */ private Integer userId; /** * 状态(1=待核销,2=已核销) */ private Integer status; /** * 核销人员id */ private Integer verificationUserId; /** * 核销时间 */ private Date verificationTime; /** * 领取时间 */ private Date insertTime; }