package com.dsh.course.feignClient.activity.model;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class UserCouponRecordRes {
|
/**
|
* 主键
|
*/
|
private Integer id;
|
/**
|
* 金额
|
*/
|
private Double money;
|
/**
|
* 满减的满金额
|
*/
|
private Double fullMoney;
|
/**
|
* 过期时间
|
*/
|
private Date expirationTime;
|
/**
|
* 添加时间
|
*/
|
private Date insertTime;
|
/**
|
* 企业id
|
*/
|
private Integer companyId;
|
/**
|
* 状态(1=未使用,2=已使用,3=已过期)
|
*/
|
private Integer state;
|
/**
|
* 使用结束时间
|
*/
|
private Date endTime;
|
/**
|
* 优惠券使用类型(0=通用,1=专车,4=小件物流)
|
*/
|
private Integer couponUseType;
|
/**
|
* 优惠券类型(1=抵扣券,2=满减券)
|
*/
|
private Integer couponType;
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
/**
|
* 优惠券id
|
* @return
|
*/
|
private Integer couponId;
|
/**
|
* 活动id
|
* @return
|
*/
|
private Integer couponActivityId;
|
/**
|
* 活动类型(1=赠送活动,2=注册,3=邀请,4=充值)
|
* @return
|
*/
|
private Integer activityType;
|
/**
|
* 充值记录id
|
* @return
|
*/
|
private Integer paymentRecordId;
|
}
|