You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weaver-hrm-organization/src/com/engine/organization/entity/searchtree/SearchTreeParams.java

33 lines
559 B
Java

This file contains ambiguous Unicode characters!

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;
}