namespace HStation.Dto { public class AddXhsProjectInput { [Required] public string GID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 创建人 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 版本 /// public int Version { get; set; } /// /// 项目地址(经度,维度) /// public string MapPosition { get; set; } /// /// 项目的客户名称 /// public string CustomerName { get; set; } /// /// 说明 /// public string Description { get; set; } } }