线边库
This commit is contained in:
46
DOAN.Model/MES/Material/MaterialPartsStorageLocations.cs
Normal file
46
DOAN.Model/MES/Material/MaterialPartsStorageLocations.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user