This commit is contained in:
2024-09-04 11:33:59 +08:00
parent cddca2a10a
commit 26311fa6a7
12 changed files with 431 additions and 260 deletions

View File

@@ -3,6 +3,7 @@ namespace Tnb.EquipMgr.Entities.Dto
public class EqpMaintainRecordListOutput
{
public string id { get; set; }
public string code { get; set; }
public string equip_id { get; set; }
public string equip_id_id { get; set; }
public string status { get; set; }

View File

@@ -3,6 +3,7 @@ namespace Tnb.EquipMgr.Entities.Dto
public class ToolMoldMaintainRecordListOutput
{
public string id { get; set; }
public string code { get; set; }
public string mold_id { get; set; }
public string mold_id_id { get; set; }
public string status { get; set; }

View File

@@ -82,6 +82,7 @@ namespace Tnb.EquipMgr
.Select((a, b, c, d,e) => new EqpMaintainRecordListOutput
{
id = a.id,
code = a.code,
equip_id = b.code + "/" + b.name,
equip_id_id = a.equip_id,
status = a.status,

View File

@@ -82,6 +82,7 @@ namespace Tnb.EquipMgr
.Select((a, b, c, d,e) => new ToolMoldMaintainRecordListOutput
{
id = a.id,
code = a.code,
mold_id = b.mold_code + "/" + b.mold_name,
mold_id_id = a.mold_id,
status = a.status,