using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// /// [SugarTable("product_inspection_content_value")] public class ProductInspectionContentValue : BaseTraceEntity, System.ICloneable, ISorter { /// /// /// public ProductInspectionContentValue() { } /// /// /// /// public ProductInspectionContentValue(ProductInspectionContentValue rhs) { this.ID = rhs.ID; this.ItemID = rhs.ItemID; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Text = rhs.Text; this.Value = rhs.Value; } /// /// ItemID /// public long ItemID { get { return _itemid; } set { _itemid = value; } } private long _itemid; /// /// 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; /// /// Text /// public string Text { get { return _text; } set { _text = value; } } private string _text; /// /// Value /// public int Value { get { return _boolValue; } set { _boolValue = value; } } private int _boolValue=0; /// /// /// /// public ProductInspectionContentValue Clone() { return (ProductInspectionContentValue)this.MemberwiseClone(); } /// /// /// /// object ICloneable.Clone() { return this.MemberwiseClone(); } } }