package com.dsh.course.feignclient.activity.model;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/7/5 20:55
|
*/
|
@Data
|
public class UserCoupon {
|
private Long id;
|
/**
|
* 优惠券id
|
*/
|
private Integer couponId;
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
/**
|
* 状态(1=待核销,2=已核销)
|
*/
|
private Integer status;
|
/**
|
* 核销人员id
|
*/
|
private Integer verificationUserId;
|
/**
|
* 核销时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date verificationTime;
|
/**
|
* 领取时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date insertTime;
|
}
|