| | |
| | | { |
| | | public class DivisionVmo |
| | | { |
| | | public DivisionVmo(DivisionVmo rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | | this.ParentIds = rhs.ParentIds; |
| | | this.Type = rhs.Type; |
| | | this.ADCode = rhs.ADCode; |
| | | this.Flags = rhs.Flags?.ToList(); |
| | | this.TagName = rhs.TagName; |
| | | this.UseStatus = rhs.UseStatus; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | this.CountryCode = rhs.CountryCode; |
| | | } |
| | | |
| | | public long ID { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 类型 |
| | | /// </summary> |
| | | public Yw.Division.eDivisionType Type { get; set; } |
| | | public Yw.Model.eDivisionType Type { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 高德地图城市编码 |
| | |
| | | /// 标签名称 |
| | | /// </summary> |
| | | public string TagName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使用状态 |
| | | /// </summary> |
| | | public Yw.Model.eUseStatus UseStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |