18 changed files with 314 additions and 92 deletions
@ -0,0 +1,66 @@ |
|||||
|
package com.yxt.anrui.base.api.basevehicleout; |
||||
|
|
||||
|
import com.yxt.common.core.utils.ExportEntityMap; |
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2022/9/29 12:00 |
||||
|
* @Description |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BaseVehicleOutVoExecl{ |
||||
|
|
||||
|
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
||||
|
private Integer rankNo; |
||||
|
@ExportEntityMap(CnName = "分公司", EnName = "createOrgName") |
||||
|
private String createOrgName; // 分公司
|
||||
|
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
||||
|
private String vinNo; |
||||
|
@ExportEntityMap(CnName = "配置", EnName = "modelConfig") |
||||
|
private String modelConfig; |
||||
|
@ExportEntityMap(CnName = "内部编码", EnName = "insideCode") |
||||
|
private String insideCode; // 内部编码
|
||||
|
@ExportEntityMap(CnName = "销售类型", EnName = "type") |
||||
|
private String type; |
||||
|
@ExportEntityMap(CnName = "销售日期", EnName = "saleDate") |
||||
|
private String saleDate; |
||||
|
@ExportEntityMap(CnName = "成交价", EnName = "price") |
||||
|
private String price; |
||||
|
@ExportEntityMap(CnName = "销售部门", EnName = "orgName") |
||||
|
private String orgName; |
||||
|
@ExportEntityMap(CnName = "销售专员", EnName = "staffName") |
||||
|
private String staffName; |
||||
|
@ExportEntityMap(CnName = "合同编号", EnName = "concatNo") |
||||
|
private String concatNo; |
||||
|
@ExportEntityMap(CnName = "是否为终端客户", EnName = "isTerminal") |
||||
|
private String isTerminal; |
||||
|
@ExportEntityMap(CnName = "客户名称", EnName = "customerName") |
||||
|
private String customerName; |
||||
|
@ExportEntityMap(CnName = "手机号码", EnName = "mobile") |
||||
|
private String mobile; |
||||
|
@ExportEntityMap(CnName = "上装/挂车名称", EnName = "trailerOrInstallName") |
||||
|
private String trailerOrInstallName; |
||||
|
@ExportEntityMap(CnName = "上装/挂车物料编码", EnName = "trailerOrInstallCode") |
||||
|
private String trailerOrInstallCode; |
||||
|
@ExportEntityMap(CnName = "上装/挂车成交价", EnName = "trailerOrInstallDealPrice") |
||||
|
private String trailerOrInstallDealPrice; |
||||
|
@ExportEntityMap(CnName = "赠品说明", EnName = "giftsDescription") |
||||
|
private String giftsDescription; |
||||
|
@ExportEntityMap(CnName = "销售折让", EnName = "salesAllowance") |
||||
|
private String salesAllowance; |
||||
|
@ExportEntityMap(CnName = "中介人1", EnName = "middleOne") |
||||
|
private String middleOne; |
||||
|
@ExportEntityMap(CnName = "返利金额1", EnName = "rebateMoneyOne") |
||||
|
private String rebateMoneyOne; |
||||
|
@ExportEntityMap(CnName = "中介人2", EnName = "middleTwo") |
||||
|
private String middleTwo; |
||||
|
@ExportEntityMap(CnName = "返利金额2", EnName = "rebateMoneyTwo") |
||||
|
private String rebateMoneyTwo; |
||||
|
@ExportEntityMap(CnName = "内部引荐人姓名", EnName = "innerName") |
||||
|
private String innerName; |
||||
|
@ExportEntityMap(CnName = "采购类型", EnName = "manPurOrderTypeValue") |
||||
|
private String manPurOrderTypeValue; |
||||
|
} |
Loading…
Reference in new issue