You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
955 B
33 lines
955 B
package com.example.demo.domain.DTO;
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName addFundsDTO
|
|
* @description:
|
|
* @author: Ethan
|
|
* @create: 2026−04-02 16:56
|
|
* @Version 1.0
|
|
**/
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class AddFundsDTO {
|
|
private String performanceMarket; //业绩归属地区
|
|
private Integer goodNum; //商品数量
|
|
private String payType; //付款方式
|
|
private Integer paymentCurrency; //付款币种
|
|
private BigDecimal paymentAmount; //付款金额
|
|
@ExcelIgnore
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai")
|
|
private Date payTime; //付款时间
|
|
private BigDecimal handlingCharge; //手续费
|
|
private String remark; //备注
|
|
|
|
}
|