增加@ExcelIgnore
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
package com.cool.store.dto.pre.fry;
|
package com.cool.store.dto.pre.fry;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
@@ -13,41 +14,62 @@ import java.util.Date;
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
public class ApplyManagementDTO {
|
public class ApplyManagementDTO {
|
||||||
|
@ExcelIgnore
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
@ExcelProperty(value = "门店编号",order = 3)
|
@ExcelProperty(value = "门店编号",order = 3)
|
||||||
@ApiModelProperty("门店Code")
|
@ApiModelProperty("门店Code")
|
||||||
private String storeCode;
|
private String storeCode;
|
||||||
|
|
||||||
@ExcelProperty(value = "门店名称",order = 2)
|
@ExcelProperty(value = "门店名称",order = 2)
|
||||||
@ApiModelProperty("门店名称")
|
@ApiModelProperty("门店名称")
|
||||||
private String storeName;
|
private String storeName;
|
||||||
|
|
||||||
@ExcelProperty(value = "申请单号",order = 1)
|
@ExcelProperty(value = "申请单号",order = 1)
|
||||||
@ApiModelProperty("申请单号")
|
@ApiModelProperty("申请单号")
|
||||||
private String applyCode;
|
private String applyCode;
|
||||||
|
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("申请类型:1-有冷藏展示柜,2-有常温展示柜,3-无展示柜 ")
|
@ApiModelProperty("申请类型:1-有冷藏展示柜,2-有常温展示柜,3-无展示柜 ")
|
||||||
private Integer applyType;
|
private Integer applyType;
|
||||||
|
|
||||||
@ExcelProperty(value = "申请类型",order =4)
|
@ExcelProperty(value = "申请类型",order =4)
|
||||||
private String applyTypeName;
|
private String applyTypeName;
|
||||||
|
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("申请人ID")
|
@ApiModelProperty("申请人ID")
|
||||||
private String createUserId;
|
private String createUserId;
|
||||||
|
|
||||||
@ExcelProperty(value = "申请人",order = 5)
|
@ExcelProperty(value = "申请人",order = 5)
|
||||||
@ApiModelProperty("申请人名称")
|
@ApiModelProperty("申请人名称")
|
||||||
private String createUserName;
|
private String createUserName;
|
||||||
|
|
||||||
@ExcelProperty(value = "申请人手机号",order =6)
|
@ExcelProperty(value = "申请人手机号",order =6)
|
||||||
@ApiModelProperty("申请人手机号")
|
@ApiModelProperty("申请人手机号")
|
||||||
private String createUserMobile;
|
private String createUserMobile;
|
||||||
|
|
||||||
@ExcelProperty(value = "申请时间",order = 7)
|
@ExcelProperty(value = "申请时间",order = 7)
|
||||||
private String createTimeStr;
|
private String createTimeStr;
|
||||||
|
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("申请时间")
|
@ApiModelProperty("申请时间")
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
@ExcelProperty(value = "审核状态",order =8)
|
@ExcelProperty(value = "审核状态",order =8)
|
||||||
private String auditStatusName;
|
private String auditStatusName;
|
||||||
|
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("审核状态:0-审批中,1-审核通过,2-审核不通过")
|
@ApiModelProperty("审核状态:0-审批中,1-审核通过,2-审核不通过")
|
||||||
private Integer auditStatus;
|
private Integer auditStatus;
|
||||||
|
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("所属大区")
|
@ApiModelProperty("所属大区")
|
||||||
private String regionName;
|
private String regionName;
|
||||||
|
@ExcelIgnore
|
||||||
private Long regionId;
|
private Long regionId;
|
||||||
|
@ExcelIgnore
|
||||||
private String investmentManagerId;
|
private String investmentManagerId;
|
||||||
|
@ExcelIgnore
|
||||||
@ApiModelProperty("督导")
|
@ApiModelProperty("督导")
|
||||||
private String investmentManagerName;
|
private String investmentManagerName;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user