26 lines
757 B
C#
26 lines
757 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|