This commit is contained in:
2024-07-19 08:50:02 +08:00
parent 9326b55a8e
commit 6e3bda642a
7 changed files with 255 additions and 35 deletions

View File

@@ -23,17 +23,6 @@ namespace Tnb.ProductionMgr.Entities.Entity
/// </summary>
public string org_id { get; set; }
/// <summary>
/// erp表体行号
/// </summary>
public int erp_lineno { get; set; }
/// <summary>
/// 工单pk值
/// </summary>
public string erp_mo_pk { get; set; }
/// <summary>
/// 表体pk值
/// </summary>
public string erp_line_pk { get; set; }
/// <summary>
/// 用户id

View File

@@ -246,16 +246,11 @@ public partial class PrdMo : BaseEntity<string>
/// <summary>
/// erp表体行号
/// </summary>
[SugarColumn(IsIgnore = true)]
public int erp_lineno { get; set; }
/// <summary>
/// 工单pk值
/// </summary>
[SugarColumn(IsIgnore = true)]
public string erp_mo_pk { get; set; }
/// <summary>
/// 表体pk值
/// </summary>
[SugarColumn(IsIgnore = true)]
public string erp_line_pk { get; set; }
}