“djh”
3 小时以前 4d081649e2d6712ccc1bb14080e600f0d89b8cd9
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
package com.gkhy.exam.system.domain.vo;
 
import com.gkhy.exam.common.domain.entity.SysDept;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.List;
 
@ApiModel(value = "SysDept对象列表", description = "SysDept对象列表")
public class DeptVo extends SysDept {
    @ApiModelProperty(value = "条款信息")
   private List<CaluseVO1> caluseVO1List;
    @ApiModelProperty(value = "负责部门")
    private List<SysDeptManageVo> sysDeptManageVoList;
 
 
    public List<CaluseVO1> getCaluseVO1List() {
        return caluseVO1List;
    }
 
    public void setCaluseVO1List(List<CaluseVO1> caluseVO1List) {
        this.caluseVO1List = caluseVO1List;
    }
 
    public List<SysDeptManageVo> getSysDeptManageVoList() {
        return sysDeptManageVoList;
    }
 
    public void setSysDeptManageVoList(List<SysDeptManageVo> sysDeptManageVoList) {
        this.sysDeptManageVoList = sysDeptManageVoList;
    }
}