| | |
| | | namespace HStation.Dto |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// |
| | | /// </summary> |
| | | public class XhsProjectDto |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// |
| | | /// </summary> |
| | | public XhsProjectDto() { } |
| | | public XhsProjectDto() |
| | | { } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// |
| | | /// </summary> |
| | | public XhsProjectDto(HStation.Model.XhsProject rhs) |
| | | { |
| | | this.GID = rhs.GID; |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | | this.Paras = rhs.Paras; |
| | |
| | | this.UseStatus = rhs.UseStatus; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | this.CreateTime = rhs.CreateTime; |
| | | this.CreateUserID = rhs.CreateUserID; |
| | | this.Version = rhs.Version; |
| | | this.Address = rhs.Address; |
| | | this.MapPosition = rhs.MapPosition; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// GUID 用于升级 |
| | | /// </summary> |
| | | public string GID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// id |
| | |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | | /// </summary> |
| | | /// </summary> |
| | | public int SortCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 说明 |
| | | /// </summary> |
| | | /// </summary> |
| | | public string Description { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | public long CreateUserID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建时间 |
| | | /// </summary> |
| | | public DateTime CreateTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 版本 |
| | | /// </summary> |
| | | public int Version { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 项目地址(经度,维度) |
| | | /// </summary> |
| | | public string MapPosition { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 项目详细地址 |
| | | /// </summary> |
| | | public string Address { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 项目的客户名称 |
| | | /// </summary> |
| | | public string CustomerName { get; set; } |
| | | } |
| | | } |
| | | } |