using Furion.DatabaseAccessor; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Vote.Services.Entities { /// /// /// [Serializable] public class outside_wall_building { /// /// Id主键 /// [DisplayName("Id主键")] [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 外墙id /// [DisplayName("外墙id")] public string outsidewallId { get; set; } /// /// 幢Id 关联三居幢id /// [DisplayName("幢Id 关联三居幢id")] public string BuildingId { get; set; } /// /// 幢名称 /// [DisplayName("幢名称")] public string BuildingName { get; set; } /// /// 地址 /// [DisplayName("地址")] public string Address { get; set; } /// /// 层数 /// [DisplayName("层数")] public int? LevelCount { get; set; } /// /// 总户数 /// [DisplayName("总户数")] public int? Households { get; set; } /// /// 建设单位 /// [DisplayName("建设单位")] public string BuildingUnit { get; set; } /// /// 设计单位 /// [DisplayName("设计单位")] public string DesingerUnit { get; set; } /// /// 施工单位 /// [DisplayName("施工单位")] public string ConstructionUnit { get; set; } /// /// 监理单位 /// [DisplayName("监理单位")] public string MonitorUnit { get; set; } /// /// 物业单位 /// [DisplayName("物业单位")] public string WuYeUnit { get; set; } /// /// 墙体问题的类型是 /// [DisplayName("墙体问题的类型是")] public string curwallproblems { get; set; } /// /// 墙体问题的类型-其他 /// [DisplayName("墙体问题的类型-其他")] public string curwallproblemother { get; set; } /// /// 哪个问题最先开始出现 /// [DisplayName("哪个问题最先开始出现")] public string wallproblemsfirst { get; set; } /// /// 第一次出现墙体问题是建成后____年 /// [DisplayName("第一次出现墙体问题是建成后____年")] public string firstproblemdate { get; set; } /// /// 墙体脱落发生频率如何 /// [DisplayName("墙体脱落发生频率如何")] public string problemfrequency { get; set; } /// /// 问题多发生在哪个季节 /// [DisplayName("问题多发生在哪个季节")] public string problemseason { get; set; } /// /// 墙体问题发生的朝向是哪面 /// [DisplayName("墙体问题发生的朝向是哪面")] public string wallproblemtoward { get; set; } /// /// 发生外墙问题的范围有多大 /// [DisplayName("发生外墙问题的范围有多大")] public string problemfanwei { get; set; } /// /// 外墙问题发生在哪个高度 /// [DisplayName("外墙问题发生在哪个高度")] public string problemheight { get; set; } /// /// 掉落物是什么 /// [DisplayName("掉落物是什么")] public string diaoluowu { get; set; } /// /// createtime /// [DisplayName("createtime")] public DateTime? createtime { get; set; } [SugarColumn(IsIgnore = true)] public List outside_wall_building_photos { get; set; } } }