|
@ -28,6 +28,8 @@ package com.yxt.anrui.scm.api.scmspecialrebate; |
|
|
import com.yxt.common.core.utils.ExportEntityMap; |
|
|
import com.yxt.common.core.utils.ExportEntityMap; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
@Data |
|
|
@Data |
|
|
public class ScmSpecialRebateExcelVo { |
|
|
public class ScmSpecialRebateExcelVo { |
|
|
|
|
|
|
|
@ -49,8 +51,12 @@ public class ScmSpecialRebateExcelVo { |
|
|
private String rebateName; |
|
|
private String rebateName; |
|
|
@ExportEntityMap(CnName = "预计返利", EnName = "estimateRebate") |
|
|
@ExportEntityMap(CnName = "预计返利", EnName = "estimateRebate") |
|
|
private String estimateRebate; |
|
|
private String estimateRebate; |
|
|
@ExportEntityMap(CnName = "其中预计费用", EnName = "expectCost") |
|
|
@ExportEntityMap(CnName = "其中支出费用", EnName = "expectItureCost") |
|
|
private String expectCost; |
|
|
private String expectItureCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "其中待支付费用", EnName = "expectTreatCost") |
|
|
|
|
|
private String expectTreatCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "其中抵顶费用", EnName = "expectSuppCost") |
|
|
|
|
|
private String expectSuppCost; |
|
|
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
|
|
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
|
|
private String palceGenDate; |
|
|
private String palceGenDate; |
|
|
@ExportEntityMap(CnName = "预提日期", EnName = "withholdingDate") |
|
|
@ExportEntityMap(CnName = "预提日期", EnName = "withholdingDate") |
|
@ -65,8 +71,18 @@ public class ScmSpecialRebateExcelVo { |
|
|
private String secondaryUploadMoney; |
|
|
private String secondaryUploadMoney; |
|
|
@ExportEntityMap(CnName = "其中待确定金额", EnName = "stayDetermineMoney") |
|
|
@ExportEntityMap(CnName = "其中待确定金额", EnName = "stayDetermineMoney") |
|
|
private String stayDetermineMoney; |
|
|
private String stayDetermineMoney; |
|
|
@ExportEntityMap(CnName = "其中费用", EnName = "money") |
|
|
@ExportEntityMap(CnName = "一次支出费用", EnName = "onceItureCost") |
|
|
private String money; |
|
|
private BigDecimal onceItureCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "一次待支付费用", EnName = "onceTreatCost") |
|
|
|
|
|
private BigDecimal onceTreatCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "一次抵顶费用", EnName = "onceSuppCost") |
|
|
|
|
|
private BigDecimal onceSuppCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "二次支出费用", EnName = "secondItureCost") |
|
|
|
|
|
private BigDecimal secondItureCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "二次待支付费用", EnName = "secondTreatCost") |
|
|
|
|
|
private BigDecimal secondTreatCost; |
|
|
|
|
|
@ExportEntityMap(CnName = "二次抵顶费用", EnName = "secondSuppCost") |
|
|
|
|
|
private BigDecimal secondSuppCost; |
|
|
@ExportEntityMap(CnName = "差异金额", EnName = "diffAmount") |
|
|
@ExportEntityMap(CnName = "差异金额", EnName = "diffAmount") |
|
|
private String diffAmount; |
|
|
private String diffAmount; |
|
|
@ExportEntityMap(CnName = "是否调整", EnName = "isAdjustment") |
|
|
@ExportEntityMap(CnName = "是否调整", EnName = "isAdjustment") |
|
|