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.
35 lines
589 B
Java
35 lines
589 B
Java
package com.glxp.api.res.thrsys;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class ThrDeptResponse {
|
|
|
|
|
|
private Integer id;
|
|
private Integer pid;
|
|
private String code;
|
|
private String name;
|
|
private Boolean advanceType;
|
|
private Boolean isDefault;
|
|
private Integer status;
|
|
private Date updateTime;
|
|
private String remark;
|
|
|
|
/**
|
|
* 第三方系统标识
|
|
*/
|
|
private String thirdSysFk;
|
|
|
|
/**
|
|
* 第三方系统名称
|
|
*/
|
|
private String thirdName;
|
|
|
|
private List<ThrDeptResponse> children;
|
|
|
|
}
|