You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
401 B
Java
24 lines
401 B
Java
5 years ago
|
package com.bsd.say.entities;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@TableName("coupon")
|
||
|
@Data
|
||
|
public class Coupon extends BaseEntity{
|
||
|
/**
|
||
|
* 波司登返回的优惠券号
|
||
|
*/
|
||
|
private String couponNo;
|
||
|
|
||
|
/**
|
||
|
* 优惠券券面值
|
||
|
*/
|
||
|
private Double couponValue;
|
||
|
|
||
|
/**
|
||
|
* 绑定的userId
|
||
|
*/
|
||
|
private Integer userId;
|
||
|
}
|