|
|
@ -26,6 +26,7 @@ |
|
|
|
package com.yxt.anrui.scm.api.scmspecialrebate; |
|
|
|
|
|
|
|
import com.yxt.common.core.utils.ExportEntityMap; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
@ -35,8 +36,6 @@ public class ScmSpecialRebateExcelVo { |
|
|
|
|
|
|
|
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
|
|
|
private Integer rankNo; |
|
|
|
@ExportEntityMap(CnName = "状态", EnName = "state") |
|
|
|
private String state; |
|
|
|
@ExportEntityMap(CnName = "分公司", EnName = "createOrgName") |
|
|
|
private String createOrgName; |
|
|
|
@ExportEntityMap(CnName = "采购系统", EnName = "purchaseSystemName") |
|
|
@ -49,46 +48,50 @@ public class ScmSpecialRebateExcelVo { |
|
|
|
private String rebateTypeValue; |
|
|
|
@ExportEntityMap(CnName = "返利名称", EnName = "rebateName") |
|
|
|
private String rebateName; |
|
|
|
@ExportEntityMap(CnName = "预计返利", EnName = "estimateRebate") |
|
|
|
private String estimateRebate; |
|
|
|
@ExportEntityMap(CnName = "预提金额", EnName = "estimateRebate") |
|
|
|
private BigDecimal estimateRebate; |
|
|
|
@ExportEntityMap(CnName = "其中支出费用", EnName = "expectItureCost") |
|
|
|
private String expectItureCost; |
|
|
|
private BigDecimal expectItureCost; |
|
|
|
@ExportEntityMap(CnName = "其中待支付费用", EnName = "expectTreatCost") |
|
|
|
private String expectTreatCost; |
|
|
|
private BigDecimal expectTreatCost; |
|
|
|
@ExportEntityMap(CnName = "其中抵顶费用", EnName = "expectSuppCost") |
|
|
|
private String expectSuppCost; |
|
|
|
private BigDecimal expectSuppCost; |
|
|
|
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
|
|
|
private String palceGenDate; |
|
|
|
@ExportEntityMap(CnName = "预提日期", EnName = "withholdingDate") |
|
|
|
private String withholdingDate; |
|
|
|
@ExportEntityMap(CnName = "上传日期", EnName = "uploadDate") |
|
|
|
private String uploadDate; |
|
|
|
@ExportEntityMap(CnName = "上传金额", EnName = "uploadMoney") |
|
|
|
private String uploadMoney; |
|
|
|
@ExportEntityMap(CnName = "二次上传日期", EnName = "secondaryUploadDate") |
|
|
|
private String secondaryUploadDate; |
|
|
|
@ExportEntityMap(CnName = "二次上传金额", EnName = "secondaryUploadMoney") |
|
|
|
private String secondaryUploadMoney; |
|
|
|
private BigDecimal uploadMoney; |
|
|
|
@ExportEntityMap(CnName = "其中待确定金额", EnName = "stayDetermineMoney") |
|
|
|
private String stayDetermineMoney; |
|
|
|
@ExportEntityMap(CnName = "一次支出费用", EnName = "onceItureCost") |
|
|
|
private BigDecimal stayDetermineMoney; |
|
|
|
@ExportEntityMap(CnName = "其中支出费用", EnName = "onceItureCost") |
|
|
|
private BigDecimal onceItureCost; |
|
|
|
@ExportEntityMap(CnName = "一次待支付费用", EnName = "onceTreatCost") |
|
|
|
@ExportEntityMap(CnName = "其中待支付费用", EnName = "onceTreatCost") |
|
|
|
private BigDecimal onceTreatCost; |
|
|
|
@ExportEntityMap(CnName = "一次抵顶费用", EnName = "onceSuppCost") |
|
|
|
@ExportEntityMap(CnName = "其中抵顶费用", EnName = "onceSuppCost") |
|
|
|
private BigDecimal onceSuppCost; |
|
|
|
@ExportEntityMap(CnName = "二次支出费用", EnName = "secondItureCost") |
|
|
|
@ExportEntityMap(CnName = "二次上传日期", EnName = "secondaryUploadDate") |
|
|
|
private String secondaryUploadDate; |
|
|
|
@ExportEntityMap(CnName = "二次上传金额", EnName = "secondaryUploadMoney") |
|
|
|
private BigDecimal secondaryUploadMoney; |
|
|
|
@ExportEntityMap(CnName = "其中支出费用", EnName = "secondItureCost") |
|
|
|
private BigDecimal secondItureCost; |
|
|
|
@ExportEntityMap(CnName = "二次待支付费用", EnName = "secondTreatCost") |
|
|
|
@ExportEntityMap(CnName = "其中待支付费用", EnName = "secondTreatCost") |
|
|
|
private BigDecimal secondTreatCost; |
|
|
|
@ExportEntityMap(CnName = "二次抵顶费用", EnName = "secondSuppCost") |
|
|
|
@ExportEntityMap(CnName = "其中抵顶费用", EnName = "secondSuppCost") |
|
|
|
private BigDecimal secondSuppCost; |
|
|
|
@ExportEntityMap(CnName = "差异金额", EnName = "diffAmount") |
|
|
|
private String diffAmount; |
|
|
|
private BigDecimal diffAmount; |
|
|
|
@ExportEntityMap(CnName = "是否调整", EnName = "isAdjustment") |
|
|
|
private String isAdjustment; |
|
|
|
@ExportEntityMap(CnName = "调整金额", EnName = "adjustmentMoney") |
|
|
|
private String adjustmentMoney; |
|
|
|
@ExportEntityMap(CnName = "返利调整金额", EnName = "adjustmentMoney") |
|
|
|
private BigDecimal adjustmentMoney; |
|
|
|
@ExportEntityMap(CnName = "支出费用调整金额", EnName = "itureAdjustmentMoney") |
|
|
|
private BigDecimal itureAdjustmentMoney; |
|
|
|
@ExportEntityMap(CnName = "待支付费用调整金额", EnName = "treatAdjustmentMoney") |
|
|
|
private BigDecimal treatAdjustmentMoney; |
|
|
|
@ExportEntityMap(CnName = "抵顶费用调整金额", EnName = "suppAdjustmentMoney") |
|
|
|
private BigDecimal suppAdjustmentMoney; |
|
|
|
@ExportEntityMap(CnName = "调整说明", EnName = "adjustmentRemarks") |
|
|
|
private String adjustmentRemarks; |
|
|
|
@ExportEntityMap(CnName = "备注", EnName = "remarks") |
|
|
|