|
|
@ -0,0 +1,50 @@ |
|
|
|
|
|
package com.example.demo.domain.vo.coin; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
import lombok.NoArgsConstructor; |
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @program: gold-java |
|
|
|
|
|
* @ClassName GoldRepeat |
|
|
|
|
|
* @description: |
|
|
|
|
|
* @author: Ethan |
|
|
|
|
|
* @create: 2026−01-28 10:54 |
|
|
|
|
|
* @Version 1.0 |
|
|
|
|
|
**/ |
|
|
|
|
|
@Data |
|
|
|
|
|
@NoArgsConstructor |
|
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true) |
|
|
|
|
|
public class GoldRepeat implements Serializable { |
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String orderCode; // 订单号 |
|
|
|
|
|
private Integer jwcode; // 精网号 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private BigDecimal permanentGold; // 永久金币 |
|
|
|
|
|
private BigDecimal freeJune; // 六月免费金币 |
|
|
|
|
|
private BigDecimal freeDecember; // 十二月免费金币 |
|
|
|
|
|
private BigDecimal taskGold; // 任务金币 |
|
|
|
|
|
private String goodsName; // 商品名称 |
|
|
|
|
|
private Byte type; // 类型(0充值/1消耗/2退款) |
|
|
|
|
|
private Byte isRefund; // 是否已退款(消费限定)1退款0未退款 |
|
|
|
|
|
|
|
|
|
|
|
private String adminName; // 用户(提交人)姓名 |
|
|
|
|
|
private Integer auditId; // 审核人id |
|
|
|
|
|
private Integer auditStatus; // 审核状态(0待审核、1通过、2驳回、3外部传入【默认通过】) |
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
|
|
private Date createTime; // 创建时间 |
|
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
|
|
private Date updateTime; // 更新时间 |
|
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
|
|
private Date auditTime; // 审核时间 |
|
|
|
|
|
} |