package com.ruoyi.tms.domain.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
public class FinanceDetailRow {
|
|
private Integer id;
|
|
private String feeType;
|
private Integer financeId;
|
private Integer financeType;
|
private BigDecimal initialFeeAmount;
|
private BigDecimal actualFeeAmount;
|
private String feeVoucherUrl;
|
private Integer dispatchOrderId;
|
private Integer dataSource;
|
private Long createId;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date feeCreateTime;
|
private Integer isYF;
|
private BigDecimal yfPrice;
|
private String yfCurrency;
|
|
private String yfServiceProviderIdType;
|
private Integer yfServiceProviderId;
|
private String yfServiceProviderName;
|
private String yfServiceProviderType;
|
|
}
|