This commit is contained in:
qianhao.xu
2024-01-15 20:04:50 +08:00
parent eb5ee7467c
commit 7af284924d
4 changed files with 89 additions and 9 deletions

View File

@@ -20,12 +20,13 @@ namespace Model.DBModel
/// <summary>
/// WP2024030001
/// </summary>
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
[SugarColumn(ColumnName = "id",IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary>
/// 零件号
/// </summary>
[SugarColumn(ColumnName = "partnumber")]
public string Partnumber { get; set; }
/// <summary>
@@ -34,6 +35,16 @@ namespace Model.DBModel
[SugarColumn(ColumnName = "product_name")]
public string ProductName { get; set; }
/// <summary>
/// 规格
/// </summary>
[SugarColumn(ColumnName = "specification")]
public string Specification { get; set; }
/// <summary>
/// 颜色代码
/// </summary>
@@ -92,7 +103,7 @@ namespace Model.DBModel
/// </summary>
[SugarColumn(ColumnName = "product_time")]
public int ProductTime { get; set; }
public float ProductTime { get; set; }
/// <summary>
@@ -107,7 +118,7 @@ namespace Model.DBModel
/// </summary>
[SugarColumn(ColumnName = "blank_num")]
public int BlankNum { get; set; }
public string BlankNum { get; set; }