package com.zy.crm.manager.entity.param; import com.zy.crm.system.entity.User; import lombok.Data; import java.util.List; @Data public class UserChildrenParam { private Long id; private Long userId; private Long deptId; private String label; private List children; public UserChildrenParam(){} public UserChildrenParam(Long id,Long userId,Long deptId,String label,List children){ this.id = id; this.userId = userId; this.deptId = deptId; this.label = label; this.children = children; } }