
5 changed files with 263 additions and 0 deletions
@ -0,0 +1,86 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmspecialrebate; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class ScmSpecialRebateExcelNewVo { |
|||
|
|||
@ExcelProperty("序号") |
|||
private Integer rankNo; |
|||
@ExcelProperty("采购系统") |
|||
private String purchaseSystemName; |
|||
@ExcelProperty("所属年月") |
|||
private String palceGenDate; |
|||
@ExcelProperty("返利类型") |
|||
private String rebateTypeValue; |
|||
@ExcelProperty("返利名称") |
|||
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; |
|||
|
|||
@ExcelProperty("备注") |
|||
private String remarks; |
|||
@ExcelProperty("品牌") |
|||
private String brandName; |
|||
@ExcelProperty("分公司") |
|||
private String createOrgName; |
|||
} |
Loading…
Reference in new issue