xiaoyong931011
2022-06-10 93e281b3cc60c8d24a0ed5547d3d399c03f9bab6
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
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminAddBelongDto", description = "参数接收类")
public class AdminAddBelongDto {
 
    @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;
 
}