ZQN
2024-06-17 951feaeef11f38701290ced94f71c9e103a419bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.project.system.domain.vo;
 
import com.project.common.annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * 文档管理视图对象 mall_package
 *
 * @author manton
 */
@Data
@ApiModel("文档管理视图对象")
public class SysDocVo {
    private static final long serialVersionUID = 1L;
 
    /** ID */
    @ApiModelProperty("ID")
    private Long docId;
 
    @Excel(name = "标题")
    @ApiModelProperty("标题")
    private String docTitle;
    @Excel(name = "类型" , readConverterExp = "1=惠企政策")
    @ApiModelProperty("类型(1惠企政策)")
    private String docType;
    @Excel(name = "内容")
    @ApiModelProperty("内容")
    private String docContent;
    @Excel(name = "使用状态:0正常,1禁用")
    @ApiModelProperty("使用状态:0正常,1禁用")
    private Integer docStatus;
    @Excel(name = "备注")
    @ApiModelProperty("备注")
    private String remark;
 
}