namespace RiskControl.NewService.Entity { /// /// 行政区域代码 /// public class SysCountyCode { /// /// 行政代码 /// public string Code { get; set; } /// /// 省份 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 县 /// public string County { get; set; } } }