优惠卷相关
This commit is contained in:
29
eladmin-system/src/main/java/cn/ysk/cashier/vo/CouponVO.java
Normal file
29
eladmin-system/src/main/java/cn/ysk/cashier/vo/CouponVO.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package cn.ysk.cashier.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
@Data
|
||||
public class CouponVO {
|
||||
private BigDecimal amount;
|
||||
private String classType;
|
||||
private Integer effectDays;
|
||||
private Integer leftNumber;
|
||||
private BigDecimal limitAmount;
|
||||
private Integer limitNumber;
|
||||
private Integer number;
|
||||
private Float ratio;
|
||||
private Integer status;
|
||||
private String name;
|
||||
private String coverImg;
|
||||
private String title;
|
||||
private Integer type;
|
||||
private Integer effectType;
|
||||
private Timestamp fromTime;
|
||||
private Timestamp toTime;
|
||||
}
|
||||
Reference in New Issue
Block a user