using System; using System.Collections.Generic; using System.Text; namespace Application.Shared.Dtos.Units { public class UnitOutputDto { public int Id { get; set; } /// /// 微擎小程序/公众号ID /// public int Uniacid { get; set; } /// /// 团体ID /// public int GroupId { get; set; } /// /// 单位分类ID,关联表building_category /// public int CategoryId { get; set; } /// /// 坐标纬度 /// public float Latitude { get; set; } /// /// 坐标经度 /// public float Longitude { get; set; } /// /// 地址名称 /// public string LocationName { get; set; } /// /// 单位名称 /// public string Name { get; set; } /// /// 重要等级 /// public Int16 ImportantRating { get; set; } /// /// 监管等级 /// public Int16 SuperviseLevel { get; set; } /// /// 上级单位ID /// public int ParentUnitId { get; set; } /// /// 负责人姓名 /// public string PrincipalName { get; set; } /// /// 负责人联系电话 /// public string PrincipalPhoneNum { get; set; } /// /// 人数 /// public Int16 PeopleNum { get; set; } /// /// 占地面积 /// public int CoverArea { get; set; } /// /// 使用面积 /// public int UseArea { get; set; } /// /// 图片集合 /// public string Imgs { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 附件信息集合 /// public string Attachments { get; set; } /// /// 操作员ID /// public int OperatorId { get; set; } /// /// 更新时间 /// public DateTime UpdateTime { get; set; } } }