
6 changed files with 309 additions and 4 deletions
@ -0,0 +1,103 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehrebate; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class ScmVehRebateExcelNewVo { |
|||
|
|||
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
|||
private Integer rankNo; |
|||
@ExportEntityMap(CnName = "采购系统", EnName = "purchaseSystemName") |
|||
private String purchaseSystemName; |
|||
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
|||
private String vinNo; |
|||
@ExportEntityMap(CnName = "车型", EnName = "vehModelName") |
|||
private String vehModelName; |
|||
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
|||
private String palceGenDate; |
|||
@ExportEntityMap(CnName = "返利类型", EnName = "rebateTypeValue") |
|||
private String rebateTypeValue; |
|||
@ExportEntityMap(CnName = "返利名称", EnName = "rebateName") |
|||
private String rebateName; |
|||
|
|||
@ExcelProperty({"返利金额", "预提"}) |
|||
private String estimateRebate; |
|||
@ExcelProperty({"返利金额", "上传"}) |
|||
private String uploadMoney; |
|||
@ExcelProperty({"返利金额", "二次上传"}) |
|||
private String secondaryUploadMoney; |
|||
@ExcelProperty({"返利金额", "待确定"}) |
|||
private String stayDetermineMoney; |
|||
@ExcelProperty({"返利金额", "调整"}) |
|||
private String adjustmentMoney; |
|||
@ExcelProperty({"返利金额", "未上传"}) |
|||
private String notUploadMoney; |
|||
|
|||
@ExcelProperty({"其中费用", "预提"}) |
|||
private String withholdCost; |
|||
@ExcelProperty({"其中费用", "上传"}) |
|||
private String money; |
|||
|
|||
@ExcelProperty({"日期", "创建"}) |
|||
private String createTime; |
|||
@ExcelProperty({"日期", "预提"}) |
|||
private String withholdingDate; |
|||
@ExcelProperty({"日期", "上传"}) |
|||
private String uploadDate; |
|||
@ExcelProperty({"日期", "二次上传"}) |
|||
private String secondaryUploadDate; |
|||
|
|||
@ExcelProperty({"状态", "流程"}) |
|||
private String state; |
|||
@ExcelProperty({"状态", "一次核对"}) |
|||
private String onceCheckState; |
|||
@ExcelProperty({"状态", "二次核对"}) |
|||
private String secondCheckState; |
|||
|
|||
@ExportEntityMap(CnName = "车辆入库价", EnName = "manufactorSettlementPrice") |
|||
private String manufactorSettlementPrice; |
|||
|
|||
@ExcelProperty({"其中", "运费"}) |
|||
private String freight; |
|||
@ExcelProperty({"其中", "上装"}) |
|||
private String topAmount; |
|||
|
|||
@ExcelProperty({"返利计算", "方式"}) |
|||
private String calculationModeValue; |
|||
@ExcelProperty({"返利计算", "标准"}) |
|||
private String calculationStandard; |
|||
|
|||
@ExportEntityMap(CnName = "备注", EnName = "remarks") |
|||
private String remarks; |
|||
@ExportEntityMap(CnName = "品牌", EnName = "brandName") |
|||
private String brandName; |
|||
@ExportEntityMap(CnName = "分公司", EnName = "createOrgName") |
|||
private String createOrgName; |
|||
} |
Loading…
Reference in new issue