25 lines
611 B
C#
25 lines
611 B
C#
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; }
|
|
|
|
}
|
|
}
|