New file |
| | |
| | | package cn.lili.modules.lmk.domain.vo; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * lmk-shop-java |
| | | * |
| | | * @author : zxl |
| | | * @date : 2025-09-12 15:19 |
| | | **/ |
| | | @Data |
| | | public class CouponVirtualVOInfo { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private String id; |
| | | |
| | | private String orderId; |
| | | |
| | | |
| | | |
| | | private String itemOrderId; |
| | | |
| | | |
| | | private String goodsId; |
| | | |
| | | |
| | | private String skuId; |
| | | |
| | | |
| | | private String skuName; |
| | | |
| | | |
| | | private String couponId; |
| | | |
| | | |
| | | private String couponNo; |
| | | |
| | | |
| | | private String couponName; |
| | | |
| | | |
| | | private String userId; |
| | | |
| | | |
| | | private String userNickname; |
| | | |
| | | /** 领取时间 */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date claimTime; |
| | | |
| | | /** 领取时间 */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | /** 名称 */ |
| | | private String name; |
| | | |
| | | /** 是否分享 */ |
| | | private String shareStatus; |
| | | |
| | | /** 是否领取 */ |
| | | private String claimStatus; |
| | | |
| | | private String goodsUrl; |
| | | } |