You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using NFine.Application.Interface;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace NFine.Application.Models{ public class ICSInspectionListDto : IElementKey { public int key { get; set; } public string ID { get; set; } public string GroupID { get; set; } public string ListCode { get; set; } public string ListName { get; set; } public string Unit { get; set; } public decimal? SetValueMax { get; set; } public decimal? SetValueMin { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool Enable { get; set; } public string EATTRIBUTE1 { get; set; } public string EATTRIBUTE2 { get; set; } public string EATTRIBUTE3 { get; set; } public string EATTRIBUTE4 { get; set; } public string EATTRIBUTE5 { get; set; } public string EATTRIBUTE6 { get; set; } public string EATTRIBUTE7 { get; set; } public string EATTRIBUTE8 { get; set; } public string EATTRIBUTE9 { get; set; } public string EATTRIBUTE10 { get; set; } }}
|