You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SysCode
|
|
|
|
|
{
|
|
|
|
|
#region 私有字段
|
|
|
|
|
|
|
|
|
|
private string _typeID;
|
|
|
|
|
private string _itemCode;
|
|
|
|
|
private string _itemName;
|
|
|
|
|
private string _remark;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 公有属性
|
|
|
|
|
|
|
|
|
|
public string TypeID
|
|
|
|
|
{
|
|
|
|
|
get { return _typeID; }
|
|
|
|
|
set { _typeID = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ItemCode
|
|
|
|
|
{
|
|
|
|
|
get { return _itemCode; }
|
|
|
|
|
set { _itemCode = value; }
|
|
|
|
|
}
|
|
|
|
|
public string ItemName
|
|
|
|
|
{
|
|
|
|
|
get { return _itemName; }
|
|
|
|
|
set { _itemName = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Remark
|
|
|
|
|
{
|
|
|
|
|
get { return _remark; }
|
|
|
|
|
set { _remark = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|