部门信息
parent
61f197c530
commit
60adcd3df3
@ -1,33 +1,55 @@
|
|||||||
package com.glxp.api.entity.auth;
|
package com.glxp.api.entity.auth;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@TableName(value = "auth_dept")
|
||||||
public class DeptEntity {
|
public class DeptEntity {
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
@TableField(value = "pid")
|
||||||
private Integer pid;
|
private Integer pid;
|
||||||
|
@TableField(value = "code;")
|
||||||
private String code;
|
private String code;
|
||||||
|
@TableField(value = "name")
|
||||||
private String name;
|
private String name;
|
||||||
|
@TableField(value = "advanceType")
|
||||||
private Boolean advanceType;
|
private Boolean advanceType;
|
||||||
|
@TableField(value = "isDefault")
|
||||||
private Boolean isDefault;
|
private Boolean isDefault;
|
||||||
|
@TableField(value = "status")
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
@TableField(value = "updateTime")
|
||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
|
@TableField(value = "remark")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
@TableField(value = "level")
|
||||||
private Integer level;
|
private Integer level;
|
||||||
|
@TableField(value = "pcode")
|
||||||
private String pcode;
|
private String pcode;
|
||||||
|
@TableField(value = "pName")
|
||||||
private String pName;
|
private String pName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 第三方仓库ID
|
* 第三方仓库ID
|
||||||
*/
|
*/
|
||||||
|
@TableField(value = "thirdId")
|
||||||
private String thirdId;
|
private String thirdId;
|
||||||
|
@TableField(value = "thirdId1")
|
||||||
private String thirdId1;
|
private String thirdId1;
|
||||||
|
@TableField(value = "thirdId2")
|
||||||
private String thirdId2;
|
private String thirdId2;
|
||||||
|
@TableField(value = "thirdId3")
|
||||||
private String thirdId3;
|
private String thirdId3;
|
||||||
|
@TableField(value = "thirdId4")
|
||||||
private String thirdId4;
|
private String thirdId4;
|
||||||
|
@TableField(value = "spUse")
|
||||||
private Boolean spUse;
|
private Boolean spUse;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue