xiaoyong931011
2022-06-24 8db556681e87dfc2537671de072059f5a747472b
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
package com.xcong.farmer.cms.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminSeeBelongInfoVo", description = "所属公司返回")
public class AdminSeeCompanyInfoVo {
 
    private Long id;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "编码")
    private String code;
 
    @ApiModelProperty(value = "网址")
    private String webAddress;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "图片")
    private String pic;
}