| | |
| | | package com.dsh.activity.model.response; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | // 关联信息 |
| | | private Integer operatorId; |
| | | private String operatorName; // 所属运营商 |
| | | private Integer storeId; |
| | | private String storeIds; |
| | | private String storeName; // 可用门店 |
| | | private Integer appUserId; // 购买用户ID |
| | | private String userName; // 购买用户 |
| | |
| | | |
| | | // 时间信息 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date paymentTime; // 购买时间[1,8](@ref) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date endTime; // 有效期 |
| | | |
| | | // 使用信息 |