补充数据

This commit is contained in:
2025-09-27 11:46:22 +08:00
parent d15f0ec207
commit 2cbdf201a2
2 changed files with 134 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ package com.czg.account.vo;
import lombok.Data;
import java.math.BigDecimal;
import java.sql.Time;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -44,4 +46,86 @@ public class UserCouponVo {
*/
List<UserCouponFoodVo> useFoods = new ArrayList<>();
/**
* 领取时间
*/
private LocalDateTime createTime;
/**
* 使用时间
*/
private LocalDateTime useTime;
/**
* 过期时间
*/
private LocalDateTime effectEndTime;
/**
* 优惠券生效时间
*/
private LocalDateTime effectStartTime;
/**
* 0未使用
* 1已使用
* 2已过期
*/
private Integer status;
/**
* 可用门店类型only-仅本店all-所有门店custom-指定门店
*/
private String useShopType;
/**
* 可用门店
*/
private String useShops;
/**
* 可使用类型dine堂食/pickup自取/deliv配送/express快递
*/
private String useType;
/**
* 可用周期,如:周一,周二,周三,周四,周五,周六,周七
*/
private String useDays;
/**
* 可用时间段类型all-全时段custom-指定时段
*/
private String useTimeType;
/**
* 可用开始时间
*/
private Time useStartTime;
/**
* 可用结束时间
*/
private Time useEndTime;
/**
* 每人领取限量,-10086为不限量
*/
private Integer getLimit;
/**
* 每人每日使用限量,-10086为不限量
*/
private Integer useLimit;
/**
* 与限时折扣同享0-否1-是
*/
private Integer discountShare;
/**
* 与会员价同享0-否1-是
*/
private Integer vipPriceShare;
}