Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsWarehouse.java
2025-07-18 10:12:48 +08:00

58 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.klp.common.core.domain.TreeEntity;
/**
* 仓库/库区/库位自关联对象 wms_warehouse
*
* @author JR
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_warehouse")
public class WmsWarehouse extends TreeEntity<WmsWarehouse> {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "warehouse_id")
private Long warehouseId;
/**
* 仓库/库区编码
*/
private String warehouseCode;
/**
* 仓库/库区名称
*/
private String warehouseName;
/**
* 类型0=仓库1=库区2=库位,…
*/
private Long warehouseType;
/**
* 同级排序号
*/
private Long sortNo;
/**
* 是否启用0=否1=是)
*/
private Integer isEnabled;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
}