|
|
|
@@ -50,9 +50,12 @@ public class WxRaffleActivityRecord extends TenantEntity { |
|
|
|
@Excel(name="客户姓名",width = 20,orderNum = "6") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "客户姓名", name = "cusName") |
|
|
|
private String cusName; |
|
|
|
@Excel(name="身份证号",width = 20,orderNum = "6") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "身份证号", name = "cusCard") |
|
|
|
@Excel(name="领奖人身份证号",width = 20,orderNum = "6") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "领奖人身份证号", name = "cusCard") |
|
|
|
private String cusCard; |
|
|
|
@Excel(name="领奖人姓名",width = 20,orderNum = "6") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "领奖人姓名", name = "realCusName") |
|
|
|
private String realCusName; |
|
|
|
@Excel(name="客户电话",width = 20,orderNum = "7") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "客户电话", name = "phone") |
|
|
|
private String phone; |
|
|
|
@@ -208,7 +211,8 @@ public class WxRaffleActivityRecord extends TenantEntity { |
|
|
|
excelTitle.put("orderNo", "订单号"); |
|
|
|
excelTitle.put("orderMoney", "订单金额"); |
|
|
|
excelTitle.put("cusName", "客户姓名"); |
|
|
|
excelTitle.put("cusCard", "身份证号"); |
|
|
|
excelTitle.put("realCusName", "领奖人姓名"); |
|
|
|
excelTitle.put("cusCard", "领奖人身份证号"); |
|
|
|
excelTitle.put("phone", "客户电话"); |
|
|
|
excelTitle.put("address", "客户地址"); |
|
|
|
excelTitle.put("createDate", "提交时间"); |
|
|
|
@@ -248,6 +252,7 @@ public class WxRaffleActivityRecord extends TenantEntity { |
|
|
|
excelObject.put("orderNo", orderNo); |
|
|
|
excelObject.put("orderMoney", orderMoney); |
|
|
|
excelObject.put("cusName", cusName); |
|
|
|
excelObject.put("realCusName", realCusName); |
|
|
|
excelObject.put("cusCard", cusCard); |
|
|
|
excelObject.put("phone", phone); |
|
|
|
excelObject.put("address", address); |
|
|
|
|