84 lines
1.9 KiB
C#
84 lines
1.9 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// area_info_maintain:实体类(地区信息)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class AreaInfoMaintainModel
|
|||
|
|
{
|
|||
|
|
public AreaInfoMaintainModel()
|
|||
|
|
{ }
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private string _area_code;
|
|||
|
|
private string _area_name;
|
|||
|
|
private string _status;
|
|||
|
|
private string _pinyin_code;
|
|||
|
|
private string _creator;
|
|||
|
|
private string _create_time;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int id
|
|||
|
|
{
|
|||
|
|
set { _id = value; }
|
|||
|
|
get { return _id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string area_code
|
|||
|
|
{
|
|||
|
|
set { _area_code = value; }
|
|||
|
|
get { return _area_code; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string area_name
|
|||
|
|
{
|
|||
|
|
set { _area_name = value; }
|
|||
|
|
get { return _area_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string status
|
|||
|
|
{
|
|||
|
|
set { _status = value; }
|
|||
|
|
get { return _status; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string pinyin_code
|
|||
|
|
{
|
|||
|
|
set { _pinyin_code = value; }
|
|||
|
|
get { return _pinyin_code; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string creator
|
|||
|
|
{
|
|||
|
|
set { _creator = value; }
|
|||
|
|
get { return _creator; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string create_time
|
|||
|
|
{
|
|||
|
|
set { _create_time = value; }
|
|||
|
|
get { return _create_time; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|