20 lines
640 B
C#
20 lines
640 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
/// <summary>
|
|
/// 设备列表输出类
|
|
/// </summary>
|
|
public class EquipmentListOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string eqp_code { get; set; }
|
|
public string eqp_name { get; set; }
|
|
public string eqp_type_code { get; set; }
|
|
//public string accept_status { get; set; }
|
|
//public string supplier_code { get; set; }
|
|
public string accept_date { get; set; }
|
|
public string install_date { get; set; }
|
|
//public string use_department_code { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
}
|