| | |
| | | package com.gkhy.exam.system.domain.vo; |
| | | |
| | | import com.gkhy.exam.system.domain.SysFunctionalDistribution; |
| | | import com.gkhy.exam.system.domain.SysFunctionalRemark; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Long companyId; |
| | | |
| | | @ApiModelProperty(value = "数据", required = true) |
| | | @NotEmpty |
| | | // @NotEmpty |
| | | private List<SysFunctionalDistribution> list; |
| | | |
| | | @ApiModelProperty(value = "备注数据", required = true) |
| | | // @NotEmpty |
| | | private List<SysFunctionalRemark> remarks; |
| | | |
| | | |
| | | } |