|
|
|
@ -23,27 +23,41 @@ import java.util.List; |
|
|
|
@NoArgsConstructor |
|
|
|
public class FundsDTO { |
|
|
|
private Integer id; |
|
|
|
private Integer jwcode; |
|
|
|
@ExcelIgnore |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
private Date payTime; |
|
|
|
private String orderCode; |
|
|
|
private String receivedMarket; //到账地区 |
|
|
|
private String performanceMarket; //业绩归属地区 |
|
|
|
private String name; |
|
|
|
private Integer jwcode; |
|
|
|
private String incomeType; //收入类别 |
|
|
|
private String remark; //备注 |
|
|
|
private Integer goodNum; //商品数量 |
|
|
|
private String payType; |
|
|
|
@ExcelIgnore |
|
|
|
private Integer receivedCurrency; |
|
|
|
private BigDecimal paymentAmount; |
|
|
|
private BigDecimal handlingCharge; |
|
|
|
private BigDecimal receivedAmount; |
|
|
|
@ExcelIgnore |
|
|
|
private Integer market; |
|
|
|
private String marketName; |
|
|
|
@ExcelIgnore |
|
|
|
private List<String> markets; |
|
|
|
private String orderCode; |
|
|
|
@ExcelIgnore |
|
|
|
private List<String> performanceMarkets; |
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
|
private Integer paymentCurrency; |
|
|
|
private String paymentCurrencyName; |
|
|
|
private BigDecimal paymentAmount; |
|
|
|
@ExcelIgnore |
|
|
|
private Integer receivedCurrency; |
|
|
|
|
|
|
|
|
|
|
|
private String receivedCurrencyName; |
|
|
|
private BigDecimal receivedAmount; |
|
|
|
private BigDecimal handlingCharge; |
|
|
|
private String payType; |
|
|
|
@ExcelIgnore |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
private Date payTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
|
private Integer status; |
|
|
|
private String statusName; |
|
|
|
|