设备数采项目刷选 工艺标准模板导出

This commit is contained in:
2023-06-05 17:23:19 +08:00
parent 7ec192f711
commit 0d7e49695c
12 changed files with 471 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipDaqQueryOutput
{
public string id { get; set; }
public string data_source { get; set; }
public string create_id { get; set; }
public string create_time { get; set; }
public string data_type { get; set; }
public string enabled { get; set; }
public string equip_id { get; set; }
public string label_name { get; set; }
public string label_point { get; set; }
public string remark { get; set; }
}
}