
3 changed files with 140 additions and 47 deletions
@ -0,0 +1,72 @@ |
|||||
|
/********************************************************* |
||||
|
********************************************************* |
||||
|
******************** ******************* |
||||
|
************* ************ |
||||
|
******* _oo0oo_ ******* |
||||
|
*** o8888888o *** |
||||
|
* 88" . "88 * |
||||
|
* (| -_- |) * |
||||
|
* 0\ = /0 * |
||||
|
* ___/`---'\___ * |
||||
|
* .' \\| |// '. *
|
||||
|
* / \\||| : |||// \ *
|
||||
|
* / _||||| -:- |||||- \ * |
||||
|
* | | \\\ - /// | | *
|
||||
|
* | \_| ''\---/'' |_/ | * |
||||
|
* \ .-\__ '-' ___/-. / * |
||||
|
* ___'. .' /--.--\ `. .'___ * |
||||
|
* ."" '< `.___\_<|>_/___.' >' "". * |
||||
|
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
||||
|
* \ \ `_. \_ __\ /__ _/ .-` / / * |
||||
|
* =====`-.____`.___ \_____/___.-`___.-'===== * |
||||
|
* `=---=' * |
||||
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
||||
|
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
||||
|
*********************************************************/ |
||||
|
package com.yxt.anrui.scm.api.scmvehrebatewith; |
||||
|
|
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import com.yxt.common.core.utils.ExportEntityMap; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
@Data |
||||
|
public class ExcelVo { |
||||
|
|
||||
|
@ExportEntityMap(CnName = "序号", EnName = "id") |
||||
|
private String id; |
||||
|
@ExportEntityMap(CnName = "采购系统", EnName = "purchaseSystemName") |
||||
|
private String purchaseSystemName; |
||||
|
@ExportEntityMap(CnName = "品牌名称", EnName = "brandName") |
||||
|
private String brandName; |
||||
|
@ExportEntityMap(CnName = "车型名称", EnName = "vehModelName") |
||||
|
private String vehModelName; |
||||
|
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
||||
|
private String vinNo; |
||||
|
@ExportEntityMap(CnName = "车辆入库价", EnName = "manufactorSettlementPrice") |
||||
|
private String manufactorSettlementPrice; |
||||
|
@ExportEntityMap(CnName = "其中运费", EnName = "freight") |
||||
|
private String freight; |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
|
@ExportEntityMap(CnName = "创建日期", EnName = "createTime") |
||||
|
private Date createTime; |
||||
|
@ExportEntityMap(CnName = "返利类型", EnName = "rebateTypeValue") |
||||
|
private String rebateTypeValue; |
||||
|
@ExportEntityMap(CnName = "返利名称", EnName = "rebateName") |
||||
|
private String rebateName; |
||||
|
@ExportEntityMap(CnName = "计算标准", EnName = "calculationStandard") |
||||
|
private String calculationStandard; |
||||
|
@ExportEntityMap(CnName = "预计返利", EnName = "estimateRebate") |
||||
|
private String estimateRebate; |
||||
|
@ExportEntityMap(CnName = "其中待支付费用", EnName = "expectTreatCost") |
||||
|
private BigDecimal expectTreatCost; |
||||
|
@ExportEntityMap(CnName = "其中抵顶费用", EnName = "expectSuppCost") |
||||
|
private BigDecimal expectSuppCost; |
||||
|
@ExportEntityMap(CnName = "抵顶费用说明", EnName = "expectSuppRemark") |
||||
|
private String expectSuppRemark; |
||||
|
@ExportEntityMap(CnName = "所属年月", EnName = "palceGenDate") |
||||
|
private String palceGenDate; |
||||
|
} |
Loading…
Reference in new issue