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.
34 lines
655 B
Java
34 lines
655 B
Java
package com.glxp.api.entity.auth;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class DeptEntity {
|
|
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 Integer level;
|
|
private String pcode;
|
|
private String pName;
|
|
|
|
/**
|
|
* 第三方仓库ID
|
|
*/
|
|
private String thirdId;
|
|
private String thirdId1;
|
|
private String thirdId2;
|
|
private String thirdId3;
|
|
private String thirdId4;
|
|
|
|
private Boolean spUse;
|
|
|
|
}
|