This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.engine.organization.entity.searchtree;
import lombok.Builder;
import lombok.Data;
/**
* @description:
* @author:dxfeng
* @createTime: 2022/05/26
* @version: 1.0
*/
@Data
@Builder
public class SearchTreeParams {
* 数据类型
* <p>
* 0:集团
* 1:分部
* 2:部门
* 3:岗位
private String type;
private String id;
private String isVirtual;
// 树搜索条件
private String keyword;
private String virtualCompanyid;
private String isLoadSubDepartment;
}