|
@ -26,25 +26,24 @@ |
|
|
package com.yxt.anrui.scm.api.scmvehrebate; |
|
|
package com.yxt.anrui.scm.api.scmvehrebate; |
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
import com.yxt.common.core.utils.ExportEntityMap; |
|
|
|
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
@Data |
|
|
@Data |
|
|
public class ScmVehRebateExcelNewVo { |
|
|
public class ScmVehRebateExcelNewVo { |
|
|
|
|
|
|
|
|
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
|
|
@ExcelProperty("序号") |
|
|
private Integer rankNo; |
|
|
private Integer rankNo; |
|
|
@ExportEntityMap(CnName = "采购系统", EnName = "purchaseSystemName") |
|
|
@ExcelProperty("采购系统") |
|
|
private String purchaseSystemName; |
|
|
private String purchaseSystemName; |
|
|
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
|
|
@ExcelProperty("车架号") |
|
|
private String vinNo; |
|
|
private String vinNo; |
|
|
@ExportEntityMap(CnName = "车型", EnName = "vehModelName") |
|
|
@ExcelProperty("车型") |
|
|
private String vehModelName; |
|
|
private String vehModelName; |
|
|
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
|
|
@ExcelProperty("所属年月") |
|
|
private String palceGenDate; |
|
|
private String palceGenDate; |
|
|
@ExportEntityMap(CnName = "返利类型", EnName = "rebateTypeValue") |
|
|
@ExcelProperty("返利类型") |
|
|
private String rebateTypeValue; |
|
|
private String rebateTypeValue; |
|
|
@ExportEntityMap(CnName = "返利名称", EnName = "rebateName") |
|
|
@ExcelProperty("返利名称") |
|
|
private String rebateName; |
|
|
private String rebateName; |
|
|
|
|
|
|
|
|
@ExcelProperty({"返利金额", "预提"}) |
|
|
@ExcelProperty({"返利金额", "预提"}) |
|
@ -81,7 +80,7 @@ public class ScmVehRebateExcelNewVo { |
|
|
@ExcelProperty({"状态", "二次核对"}) |
|
|
@ExcelProperty({"状态", "二次核对"}) |
|
|
private String secondCheckState; |
|
|
private String secondCheckState; |
|
|
|
|
|
|
|
|
@ExportEntityMap(CnName = "车辆入库价", EnName = "manufactorSettlementPrice") |
|
|
@ExcelProperty("车辆入库价") |
|
|
private String manufactorSettlementPrice; |
|
|
private String manufactorSettlementPrice; |
|
|
|
|
|
|
|
|
@ExcelProperty({"其中", "运费"}) |
|
|
@ExcelProperty({"其中", "运费"}) |
|
@ -94,10 +93,10 @@ public class ScmVehRebateExcelNewVo { |
|
|
@ExcelProperty({"返利计算", "标准"}) |
|
|
@ExcelProperty({"返利计算", "标准"}) |
|
|
private String calculationStandard; |
|
|
private String calculationStandard; |
|
|
|
|
|
|
|
|
@ExportEntityMap(CnName = "备注", EnName = "remarks") |
|
|
@ExcelProperty("备注") |
|
|
private String remarks; |
|
|
private String remarks; |
|
|
@ExportEntityMap(CnName = "品牌", EnName = "brandName") |
|
|
@ExcelProperty("品牌") |
|
|
private String brandName; |
|
|
private String brandName; |
|
|
@ExportEntityMap(CnName = "分公司", EnName = "createOrgName") |
|
|
@ExcelProperty("分公司") |
|
|
private String createOrgName; |
|
|
private String createOrgName; |
|
|
} |
|
|
} |
|
|