feat:代办+督导改为招商经理
This commit is contained in:
@@ -46,7 +46,7 @@ public class ExportBranchShopDTO {
|
||||
@ColumnWidth(30)
|
||||
private String franchiseBrand;
|
||||
|
||||
@ExcelProperty(value = "督导",order = 7)
|
||||
@ExcelProperty(value = "招商经理",order = 7)
|
||||
@ColumnWidth(30)
|
||||
private String investmentManager;
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ public class ExportFinanceDTO {
|
||||
@ColumnWidth(20)
|
||||
private String regionName;
|
||||
|
||||
@ExcelProperty(value = "督导", order = 9) // 原先是 8,现在调整为 9
|
||||
@ExcelProperty(value = "招商经理", order = 9) // 原先是 8,现在调整为 9
|
||||
@ColumnWidth(20)
|
||||
private String investmentManagerName;
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ public class ExportJoinShopDTO {
|
||||
@ColumnWidth(20)
|
||||
private String regionName;
|
||||
|
||||
@ExcelProperty(value = "督导", order = 9)
|
||||
@ExcelProperty(value = "招商经理", order = 9)
|
||||
@ColumnWidth(20)
|
||||
private String investmentManagerName;
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ public class ExportProgressDTO {
|
||||
@ColumnWidth(20)
|
||||
private String regionName;
|
||||
|
||||
@ExcelProperty(value = "督导", order = 11)
|
||||
@ExcelProperty(value = "招商经理", order = 11)
|
||||
@ColumnWidth(20)
|
||||
private String investmentManagerName;
|
||||
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
package com.cool.store.dto;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
||||
import com.alibaba.excel.annotation.write.style.ContentStyle;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.poi.ss.usermodel.HorizontalAlignment;
|
||||
|
||||
import java.time.temporal.ChronoUnit;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@ContentStyle(horizontalAlignment = HorizontalAlignment.LEFT,wrapped = true)
|
||||
public class PreparationScheduleDTO {
|
||||
|
||||
@ExcelProperty("加盟商名称")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("加盟商名称")
|
||||
private String username;
|
||||
|
||||
@ExcelProperty("加盟商手机号")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("加盟手机号")
|
||||
private String mobile;
|
||||
|
||||
@ExcelProperty("门店名称")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("门店名称")
|
||||
private String shopName;
|
||||
|
||||
@ExcelProperty("门店编号")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("门店编码")
|
||||
private String shopCode;
|
||||
|
||||
|
||||
@ExcelProperty("当前进度")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("当前进度")
|
||||
private String currentProgress;
|
||||
|
||||
@ExcelProperty("计划开店时间")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("计划开店时间")
|
||||
private String planOpenTime;
|
||||
|
||||
@ExcelProperty("开店时长(天)")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("开店时长")
|
||||
private String days;
|
||||
|
||||
@ExcelProperty("所属区域")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("所属站区")
|
||||
private String regionNodeName;
|
||||
|
||||
@ExcelProperty("招商经理")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("招商经理名称")
|
||||
private String investmentManagerName;
|
||||
|
||||
@ExcelProperty("督导")
|
||||
@ColumnWidth(30)
|
||||
@ApiModelProperty("督导")
|
||||
private String supervisionName;
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user