mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.common.model.vos;
 
import java.util.List;
 
import javax.validation.constraints.NotEmpty;
 
import com.panzhihua.common.model.vos.community.ComMngStructBuildTypeVO;
import com.panzhihua.common.model.vos.user.ComMngUserTagVO;
import com.panzhihua.common.validated.AddGroup;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 系统配置
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-25 16:53
 **/
@Data
@ApiModel(value = "系统配置")
public class SystemmanagementConfigVO {
    @ApiModelProperty("建筑类型")
    @NotEmpty(groups = {AddGroup.class}, message = "建筑类型不能为空")
    List<ComMngStructBuildTypeVO> comMngStructBuildTypeVOList;
    @ApiModelProperty("用户标签")
    @NotEmpty(groups = {AddGroup.class}, message = "用户标签不能为空")
    List<ComMngUserTagVO> comMngUserTagVOList;
    @ApiModelProperty(value = "社区id", hidden = true)
    private Long communityId;
 
}