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.
39 lines
686 B
Java
39 lines
686 B
Java
package com.glxp.api.entity.thrsys;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 第三方仓库信息
|
|
*/
|
|
@Data
|
|
@TableName("thr_dept")
|
|
public class ThrDeptEntity {
|
|
|
|
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 thirdSysFk;
|
|
} |