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.
|
|
|
|
namespace Ds.Modules.DsEntity.Auth
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Ds_Sys_StorageLocation : BaseEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StorageName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StorageCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 属于哪个仓库
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long WarehouseId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位面积
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double LocationRea { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否启用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsEnable { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Ds_Sys_Warehouse : BaseEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WarehouseName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WarehouseCode { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|