增加@ExcelIgnore

This commit is contained in:
shuo.wang
2025-07-08 09:52:12 +08:00
parent 6a3f890f44
commit 32ac5d82a9

View File

@@ -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;