72 lines
1.3 KiB
C#
72 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// tradingarea:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class tradingarea
|
|||
|
|
{
|
|||
|
|
public tradingarea()
|
|||
|
|
{}
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private string _tradingareaid;
|
|||
|
|
private string _tradingareaname;
|
|||
|
|
private string _countyid;
|
|||
|
|
private string _CityID;
|
|||
|
|
private string _center;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string tradingareaID
|
|||
|
|
{
|
|||
|
|
set{ _tradingareaid=value;}
|
|||
|
|
get{return _tradingareaid;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string tradingareaName
|
|||
|
|
{
|
|||
|
|
set{ _tradingareaname=value;}
|
|||
|
|
get{return _tradingareaname;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string CountyID
|
|||
|
|
{
|
|||
|
|
set { _countyid = value; }
|
|||
|
|
get { return _countyid; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string CityID
|
|||
|
|
{
|
|||
|
|
set { _CityID = value; }
|
|||
|
|
get { return _CityID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string center
|
|||
|
|
{
|
|||
|
|
set { _center = value; }
|
|||
|
|
get { return _center; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|