using System; namespace Mtxfw.Model { /// /// county:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class county { public county() {} #region Model private int _id; private string _countyid; private string _countyname; private string _cityid; private string _center; /// /// /// public int id { set{ _id=value;} get{return _id;} } /// /// /// public string CountyID { set{ _countyid=value;} get{return _countyid;} } /// /// /// public string CountyName { set{ _countyname=value;} get{return _countyname;} } /// /// /// public string CityID { set{ _cityid=value;} get{return _cityid;} } /// /// /// public string center { set { _center = value; } get { return _center; } } #endregion Model } }