doum
2025-12-12 dce1e83ec27a066ebc6c17a4ac6d03c9ad6ff703
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
package com.doumee.dao.web.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("附件上传信息表")
public class OrgDTO {
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "列表图")
    private String imgurl;
 
    @ApiModelProperty(value = "所属县区编码(关联areas)")
    private Integer areaId;
 
    @ApiModelProperty(value = "地址")
    private String addr;
 
    @ApiModelProperty(value = "介绍")
    private String info;
 
    @ApiModelProperty(value = "关联系统用户编码(关联system_user表)")
    private Integer userId;
}