using System; namespace Mtxfw.Model { /// /// city:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class city { #region Model private int _id; private string _cityid; private string _cityname; private string _provinceid; private string _pinyin; private string _pinyinjx; private string _citycode; private string _center; /// /// /// public int id { set{ _id=value;} get{return _id;} } /// /// /// public string CityID { set{ _cityid=value;} get{return _cityid;} } /// /// /// public string CityName { set{ _cityname=value;} get{return _cityname;} } /// /// /// public string ProvinceID { set{ _provinceid=value;} get{return _provinceid;} } /// /// /// public string pinyin { set { _pinyin = value; } get { return _pinyin; } } /// /// /// public string pinyinjx { set { _pinyinjx = value; } get { return _pinyinjx; } } /// /// /// public string citycode { set { _citycode = value; } get { return _citycode; } } /// /// /// public string center { set { _center = value; } get { return _center; } } #endregion Model } }