12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class Mem_AreaRegion
- {
- private string _areacode;
- private string _areaname;
- private string _parentcode;
- public Mem_AreaRegion()
- {
- }
- public string AreaCode
- {
- get { return _areacode; }
- set { _areacode = value; }
- }
- public string AreaName
- {
- get { return _areaname; }
- set { _areaname = value; }
- }
- public string ParentCode
- {
- get { return _parentcode; }
- set { _parentcode = value; }
- }
- }
- }
|