using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// /// [SugarTable("product_inspection_template_item")] public class ProductInspectionTemplateItem : CorpTraceEntity, ICloneable, ISorter { /// /// /// public ProductInspectionTemplateItem() { } /// /// /// /// public ProductInspectionTemplateItem(ProductInspectionTemplateItem rhs) { this.ID = rhs.ID; this.ProductType = rhs.ProductType; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.GroupID = rhs.GroupID; this.Name = rhs.Name; this.ValueType = rhs.ValueType; this.ValueNullAble = rhs.ValueNullAble; this.ValueRangeMin = rhs.ValueRangeMin; this.ValueRangeMax = rhs.ValueRangeMax; this.TipInfo = rhs.TipInfo; this.MonitorPointID = rhs.MonitorPointID; } /// /// MonitorPointID /// public long MonitorPointID { get { return _monitorPointID; } set { _monitorPointID = value; } } private long _monitorPointID; /// /// ProductType /// public long ProductType { get { return _producttype; } set { _producttype = value; } } private long _producttype; /// /// UseStatus /// public int UseStatus { get { return _usestatus; } set { _usestatus = value; } } private int _usestatus; /// /// SortCode /// public int SortCode { get { return _sortcode; } set { _sortcode = value; } } private int _sortcode; /// /// GroupID /// public long GroupID { get { return _groupid; } set { _groupid = value; } } private long _groupid; /// /// Name /// public string Name { get { return _name; } set { _name = value; } } private string _name; /// /// ValueType /// public int ValueType { get { return _valuetype; } set { _valuetype = value; } } private int _valuetype; /// /// ValueNullAble /// public int ValueNullAble { get { return _valuenullable; } set { _valuenullable = value; } } private int _valuenullable; /// /// ValueRangeMin /// public double? ValueRangeMin { get { return _valuerangemin; } set { _valuerangemin = value; } } private double? _valuerangemin; /// /// ValueRangeMax /// public double? ValueRangeMax { get { return _valuerangemax; } set { _valuerangemax = value; } } private double? _valuerangemax; /// /// TipInfo /// public string TipInfo { get { return _tipinfo; } set { _tipinfo = value; } } private string _tipinfo; /// /// /// /// public ProductInspectionTemplateItem Clone() { return (ProductInspectionTemplateItem)this.MemberwiseClone(); } /// /// /// /// object ICloneable.Clone() { return this.MemberwiseClone(); } } }