设备入库领用
This commit is contained in:
24
EquipMgr/Tnb.EquipMgr.Entities/Dto/EquipSparePartRecord.cs
Normal file
24
EquipMgr/Tnb.EquipMgr.Entities/Dto/EquipSparePartRecord.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities
|
||||
{
|
||||
public class EquipSparePartRecordInput
|
||||
{
|
||||
public string? equip_id { get; set; }
|
||||
}
|
||||
public class EquipSparePartRecordOut
|
||||
{
|
||||
public string? id { get; set; }
|
||||
public string? code { get; set; }
|
||||
public string? name { get; set; }
|
||||
public string? type { get; set; }
|
||||
public string? execuser { get; set; }
|
||||
public string? execdatetime { get; set; }
|
||||
public int? num { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,7 @@ namespace Tnb.EquipMgr.Entities.Dto
|
||||
public string? code { get; set; }
|
||||
public string? name { get; set; }
|
||||
public string? specification { get; set; }
|
||||
public int? num { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user