huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/SystemmanagementConfigVO.java
@@ -1,14 +1,16 @@
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;
import javax.validation.constraints.NotEmpty;
import java.util.List;
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
@@ -20,12 +22,12 @@
@ApiModel(value = "系统配置")
public class SystemmanagementConfigVO {
    @ApiModelProperty("建筑类型")
    @NotEmpty(groups = {AddGroup.class},message ="建筑类型不能为空")
    @NotEmpty(groups = {AddGroup.class}, message = "建筑类型不能为空")
    List<ComMngStructBuildTypeVO> comMngStructBuildTypeVOList;
    @ApiModelProperty("用户标签")
    @NotEmpty(groups = {AddGroup.class},message ="用户标签不能为空")
    @NotEmpty(groups = {AddGroup.class}, message = "用户标签不能为空")
    List<ComMngUserTagVO> comMngUserTagVOList;
    @ApiModelProperty(value = "社区id",hidden = true)
    @ApiModelProperty(value = "社区id", hidden = true)
    private Long communityId;
}