修正表结构
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
namespace DOAN.Model.PBL
|
||||
{
|
||||
/// <summary>
|
||||
@@ -13,16 +12,28 @@ namespace DOAN.Model.PBL
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 料架号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "rack_code")]
|
||||
public string RackCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 层号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "layer_num")]
|
||||
public int LayerNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件号
|
||||
/// </summary>
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 料架号
|
||||
/// 最大容量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "rack_code")]
|
||||
public string RackCode { get; set; }
|
||||
[SugarColumn(ColumnName = "max_capacity")]
|
||||
public int MaxCapacity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱子数
|
||||
@@ -53,6 +64,5 @@ namespace DOAN.Model.PBL
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user