using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Dto { /// /// /// public class InspectionContentItem4MgrGetProductID { /// /// /// public InspectionContentItem4MgrGetProductID() { } #region Model /// /// 标识 /// public long ID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 分组标识 /// public long GroupID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 值类型(数值,文字,枚举) /// public Model.ProductInspectionContentItem.eValueType ValueType { get; set; } /// /// (是否可空) /// public Model.ProductInspectionContentItem.eValueNullAble ValueNullAble { get; set; } = Model.ProductInspectionContentItem.eValueNullAble.否; /// /// 值上限(数值) /// public double? ValueRangeMin { get; set; } = null; /// /// 值下限(数值) /// public double? ValueRangeMax { get; set; } = null; /// /// (提示信息) /// public string TipInfo { get; set; } /// /// 创建用户标识 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新用户标识 /// public long? UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 使用状态 /// public Model.ProductInspectionContentItem.eUseStatus UseStatus { get { return _useStatus; } set { _useStatus = value; } } private Model.ProductInspectionContentItem.eUseStatus _useStatus = Model.ProductInspectionContentItem.eUseStatus.有效; #endregion } }