线边库

This commit is contained in:
qianhao.xu
2025-03-18 15:22:30 +08:00
parent ab8c1dbb9b
commit e14f34a107
31 changed files with 2121 additions and 5 deletions

View File

@@ -0,0 +1,46 @@
namespace DOAN.Model.MES.material
{
/// <summary>
/// 北泽线边库库位
/// </summary>
[SugarTable("material_parts_storage_locations")]
public class MaterialPartsStorageLocations
{
/// <summary>
/// 库位ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "location_id")]
public int LocationId { get; set; }
/// <summary>
/// 库位编码
/// </summary>
[SugarColumn(ColumnName = "location_code")]
public string LocationCode { get; set; }
/// <summary>
/// 库位描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 所属仓库ID
/// </summary>
[SugarColumn(ColumnName = "warehouse_id")]
public int WarehouseId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "created_at")]
public DateTime? CreatedAt { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "updated_at")]
public DateTime? UpdatedAt { get; set; }
}
}