Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/EquipSparePartsQueryOutput.cs
2023-11-29 11:44:01 +08:00

14 lines
403 B
C#

namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipSparePartsQueryOutput
{
public string? id { get; set; }
public string? type_code { get; set; }
public string? type_name { get; set; }
public string? code { get; set; }
public string? name { get; set; }
public string? specification { get; set; }
public int? num { get; set; }
}
}