Blame view

GetDepartmentsVO.java 355 Bytes
涂亚平 committed
1 2 3 4
package com.subsidy.dto.department;

import lombok.Data;

涂亚平 committed
5 6
import java.util.List;

涂亚平 committed
7 8 9 10 11 12 13 14 15 16 17
@Data
public class GetDepartmentsVO {

    private Long id;

    private String departmentName;

    private String leaderName;

    private Integer cnt;

涂亚平 committed
18 19 20 21 22 23
    private Long parentId;

    private List<GetDepartmentsVO> children;

    private String parentDepartmentName;

涂亚平 committed
24
}