预炸申请导出
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
package com.cool.store.dto.pre.fry;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import com.cool.store.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@@ -16,8 +15,10 @@ import java.util.Date;
|
||||
public class ApplyManagementDTO {
|
||||
|
||||
private Long id;
|
||||
@ExcelProperty(value = "门店编号",order = 3)
|
||||
@ApiModelProperty("门店Code")
|
||||
private String storeCode;
|
||||
@ExcelProperty(value = "门店名称",order = 2)
|
||||
@ApiModelProperty("门店名称")
|
||||
private String storeName;
|
||||
@ExcelProperty(value = "申请单号",order = 1)
|
||||
@@ -25,20 +26,30 @@ public class ApplyManagementDTO {
|
||||
private String applyCode;
|
||||
@ApiModelProperty("申请类型:1-有冷藏展示柜,2-有常温展示柜,3-无展示柜 ")
|
||||
private Integer applyType;
|
||||
@ExcelProperty(value = "申请类型",order =6)
|
||||
private String applyTypeName;
|
||||
@ApiModelProperty("申请人ID")
|
||||
private String createUserId;
|
||||
@ExcelProperty(value = "申请人",order = 7)
|
||||
@ApiModelProperty("申请人名称")
|
||||
private String createUserName;
|
||||
@ExcelProperty(value = "申请人手机号",order =8)
|
||||
@ApiModelProperty("申请人手机号")
|
||||
private String createUserMobile;
|
||||
@ExcelProperty(value = "申请时间",order = 9)
|
||||
private String createTimeStr;
|
||||
@ApiModelProperty("申请时间")
|
||||
private Date createTime;
|
||||
@ExcelProperty(value = "审核状态",order =10)
|
||||
private String auditStatusName;
|
||||
@ApiModelProperty("审核状态:0-审批中,1-审核通过,2-审核不通过")
|
||||
private Integer auditStatus;
|
||||
@ExcelProperty(value = "所属大区",order = 4)
|
||||
@ApiModelProperty("所属大区")
|
||||
private String regionName;
|
||||
private Long regionId;
|
||||
private String investmentManagerId;
|
||||
@ExcelProperty(value = " 督导",order = 5)
|
||||
@ApiModelProperty("督导")
|
||||
private String investmentManagerName;
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ import com.cool.store.common.PageBasicInfo;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ApplyManagementQueryDTO extends PageBasicInfo {
|
||||
@@ -25,4 +26,8 @@ public class ApplyManagementQueryDTO extends PageBasicInfo {
|
||||
private Date createTimeEnd;
|
||||
@ApiModelProperty("申请编号")
|
||||
private String applyCode;
|
||||
@ApiModelProperty("所属大区")
|
||||
private List<Long> regionIds;
|
||||
@ApiModelProperty("所属督导")
|
||||
private String investmentManagerId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user