单据类型,仓库,新增寄售功能,关联库存,寄售库存,以及其他联动
parent
b11264e812
commit
8a41703215
@ -1,27 +1,103 @@
|
|||||||
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;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@TableName(value = "auth_warehouse")
|
||||||
public class InvWarehouseEntity {
|
public class InvWarehouseEntity {
|
||||||
|
|
||||||
public String id;
|
|
||||||
public String code;
|
|
||||||
public String name;
|
|
||||||
public String parentId;
|
|
||||||
public String remark;
|
|
||||||
public boolean defaultInv;
|
|
||||||
|
|
||||||
public String thirdId;
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 仓库编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "code")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 仓库名称
|
||||||
|
*/
|
||||||
|
@TableField(value = "`name`")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 部门编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "parentId")
|
||||||
|
private String parentId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@TableField(value = "remark")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否系统默认仓库
|
||||||
|
*/
|
||||||
|
@TableField(value = "defaultInv")
|
||||||
|
private Boolean defaultInv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方产品编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "thirdId")
|
||||||
|
private String thirdId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方产品编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "thirdId1")
|
||||||
|
private String thirdId1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方产品编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "thirdId2")
|
||||||
|
private String thirdId2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方产品编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "thirdId3")
|
||||||
|
private String thirdId3;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方产品编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "thirdId4")
|
||||||
|
private String thirdId4;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 父级仓库
|
||||||
|
*/
|
||||||
|
@TableField(value = "parentCode")
|
||||||
|
private String parentCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否寄售
|
||||||
|
*/
|
||||||
|
@TableField(value = "advanceType")
|
||||||
|
private Boolean advanceType;
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
public String thirdName;
|
public String thirdName;
|
||||||
public String thirdId1;
|
@TableField(exist = false)
|
||||||
public String thirdName1;
|
public String thirdName1;
|
||||||
public String thirdId2;
|
@TableField(exist = false)
|
||||||
public String thirdName2;
|
public String thirdName2;
|
||||||
public String thirdId3;
|
@TableField(exist = false)
|
||||||
public String thirdName3;
|
public String thirdName3;
|
||||||
public String thirdId4;
|
@TableField(exist = false)
|
||||||
public String thirdName4;
|
public String thirdName4;
|
||||||
|
@TableField(exist = false)
|
||||||
private String warehouseName;//仓库名字
|
private String warehouseName;//仓库名字
|
||||||
private String parentCode;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue