From 32ac5d82a9c4c60c61992634a09c5e32df23d778 Mon Sep 17 00:00:00 2001 From: "shuo.wang" Date: Tue, 8 Jul 2025 09:52:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0@ExcelIgnore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/dto/pre/fry/ApplyManagementDTO.java | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/coolstore-partner-model/src/main/java/com/cool/store/dto/pre/fry/ApplyManagementDTO.java b/coolstore-partner-model/src/main/java/com/cool/store/dto/pre/fry/ApplyManagementDTO.java index 79997efbf..f7cee8346 100644 --- a/coolstore-partner-model/src/main/java/com/cool/store/dto/pre/fry/ApplyManagementDTO.java +++ b/coolstore-partner-model/src/main/java/com/cool/store/dto/pre/fry/ApplyManagementDTO.java @@ -1,5 +1,6 @@ package com.cool.store.dto.pre.fry; +import com.alibaba.excel.annotation.ExcelIgnore; import com.alibaba.excel.annotation.ExcelProperty; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -13,41 +14,62 @@ import java.util.Date; */ @Data public class ApplyManagementDTO { - + @ExcelIgnore private Long id; + @ExcelProperty(value = "门店编号",order = 3) @ApiModelProperty("门店Code") private String storeCode; + @ExcelProperty(value = "门店名称",order = 2) @ApiModelProperty("门店名称") private String storeName; + @ExcelProperty(value = "申请单号",order = 1) @ApiModelProperty("申请单号") private String applyCode; + + @ExcelIgnore @ApiModelProperty("申请类型:1-有冷藏展示柜,2-有常温展示柜,3-无展示柜 ") private Integer applyType; + @ExcelProperty(value = "申请类型",order =4) private String applyTypeName; + + @ExcelIgnore @ApiModelProperty("申请人ID") private String createUserId; + @ExcelProperty(value = "申请人",order = 5) @ApiModelProperty("申请人名称") private String createUserName; + @ExcelProperty(value = "申请人手机号",order =6) @ApiModelProperty("申请人手机号") private String createUserMobile; + @ExcelProperty(value = "申请时间",order = 7) private String createTimeStr; + + @ExcelIgnore @ApiModelProperty("申请时间") private Date createTime; + @ExcelProperty(value = "审核状态",order =8) private String auditStatusName; + + @ExcelIgnore @ApiModelProperty("审核状态:0-审批中,1-审核通过,2-审核不通过") private Integer auditStatus; + + @ExcelIgnore @ApiModelProperty("所属大区") private String regionName; + @ExcelIgnore private Long regionId; + @ExcelIgnore private String investmentManagerId; + @ExcelIgnore @ApiModelProperty("督导") private String investmentManagerName;