|
|
@ -0,0 +1,35 @@ |
|
|
|
package com.example.commons.domain.vo; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.NoArgsConstructor; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
@Data |
|
|
|
@NoArgsConstructor |
|
|
|
public class ConsumeDetail { |
|
|
|
private Integer detailId; |
|
|
|
private String name; |
|
|
|
private String homilyId; |
|
|
|
private String area; |
|
|
|
private Integer activityId; |
|
|
|
private String rechargeWay; |
|
|
|
private String goods; |
|
|
|
private String consumePlatform; |
|
|
|
private String consumeType; |
|
|
|
private String refundType; |
|
|
|
private String refundGoods; |
|
|
|
private Integer contactId; |
|
|
|
private String remark; |
|
|
|
private Double rechargeCoin; |
|
|
|
private Double freeCoin; |
|
|
|
private Double taskCoin; |
|
|
|
private String conmmitName; |
|
|
|
private Integer status; |
|
|
|
private String updateType; |
|
|
|
private Integer detailFlag; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private Date createTime; |
|
|
|
} |