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_value")]
public class ProductInspectionTemplateValue : BaseTraceEntity, System.ICloneable, ISorter
{
///
///
///
public ProductInspectionTemplateValue() { }
///
///
///
///
public ProductInspectionTemplateValue(ProductInspectionTemplateValue 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 ProductInspectionTemplateValue Clone()
{
return (ProductInspectionTemplateValue)this.MemberwiseClone();
}
///
///
///
///
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}