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