新增MES库区管理功能,包含免密接口、数据处理逻辑及相关控制器、服务和实体的实现。支持库区的增删改查操作,优化用户体验并增强系统的实时数据同步能力。
This commit is contained in:
31
yy-admin-master/YY.Admin.Core/Entity/MesXslWarehouseArea.cs
Normal file
31
yy-admin-master/YY.Admin.Core/Entity/MesXslWarehouseArea.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace YY.Admin.Core.Entity;
|
||||
|
||||
public class MesXslWarehouseArea
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public string? AreaCode { get; set; }
|
||||
public string? AreaName { get; set; }
|
||||
public string? WarehouseId { get; set; }
|
||||
public string? WarehouseName { get; set; }
|
||||
public string? WarehouseCategory { get; set; }
|
||||
|
||||
/// <summary>仓库分类名称(JeecgBoot @Dict 自动翻译,JSON key = warehouseCategory_dictText)</summary>
|
||||
[JsonPropertyName("warehouseCategory_dictText")]
|
||||
public string? WarehouseCategoryName { get; set; }
|
||||
public int? MaxCapacity { get; set; }
|
||||
public int? ActualCapacity { get; set; }
|
||||
public string? Remark { get; set; }
|
||||
|
||||
/// <summary>状态:0启用 1停用</summary>
|
||||
public string? Status { get; set; }
|
||||
|
||||
public int? TenantId { get; set; }
|
||||
public string? CreateBy { get; set; }
|
||||
public DateTime? CreateTime { get; set; }
|
||||
public string? UpdateBy { get; set; }
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
|
||||
public string StatusText => Status == "1" ? "停用" : "启用";
|
||||
}
|
||||
Reference in New Issue
Block a user