49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
namespace DOAN.Model.MES.mm.line
|
|
{
|
|
/// <summary>
|
|
/// mm_line_location
|
|
/// </summary>
|
|
[SugarTable("mm_line_location")]
|
|
public class MmLineLocation
|
|
{
|
|
/// <summary>
|
|
/// 库位的唯一标识符
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "location_name")]
|
|
public string LocationName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "location_code")]
|
|
public string LocationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 线别
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "line_code")]
|
|
public string LineCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位的描述信息
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位的容量
|
|
/// </summary>
|
|
public int? Capacity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位的状态(如可用、禁用等)
|
|
/// </summary>
|
|
public int? Status { get; set; }
|
|
|
|
}
|
|
} |