店铺导出字段修改

This commit is contained in:
Lenovo 2024-07-19 11:25:16 +08:00
parent adaf524455
commit 95c2264ed1
1 changed files with 10 additions and 0 deletions

View File

@ -21,12 +21,14 @@ public class RespBusStoreInfo {
* 平台类型
*/
@ApiModelProperty(name = "平台类型")
@Excel(name = "平台类型")
private String platformType;
/**
* 店铺编码
*/
@ApiModelProperty(name = "编号")
@Excel(name = "编号")
private String storeCode;
/**
@ -46,24 +48,28 @@ public class RespBusStoreInfo {
* 授权状态
*/
@ApiModelProperty(name = "授权状态")
@Excel(name = "在线状态")
private String grantStatus;
/**
* 回访状态
*/
@ApiModelProperty(name = "回访状态")
@Excel(name = "是否开启")
private String returnVisitStatus;
/**
* 是否自配送
*/
@ApiModelProperty(name = "是否自配送")
@Excel(name = "是否自配送")
private String selfDeliveryStatus;
/**
* 回访用户区间营销用户下单
*/
@ApiModelProperty(name = "回访用户区间{=营销用户下单?}")
@Excel(name = "营销用户区间")
private String returnVisitUserRange;
/**
@ -76,6 +82,7 @@ public class RespBusStoreInfo {
* 归属销售姓名
*/
@ApiModelProperty(name = "归属销售姓名")
@Excel(name = "归属销售姓名")
private String saleBindName;
/**
@ -106,13 +113,16 @@ public class RespBusStoreInfo {
/** 昨日回访比50% */
@ApiModelProperty(name = "昨日回访比50%")
@Excel(name = "昨日回访比")
private String lastReturnVisitRate;
/** 今日回访量 */
@ApiModelProperty(name = "今日回访量")
@Excel(name = "今日回访量")
private int todayReturnVisitNum;
/** 评分 */
@Excel(name = "评分")
private String score;
public RespBusStoreInfo() {