宁波既有建筑外墙脱落问卷调查
This commit is contained in:
106
20220330_Vote/Vote.Services/Entities/outside_wall.cs
Normal file
106
20220330_Vote/Vote.Services/Entities/outside_wall.cs
Normal file
@@ -0,0 +1,106 @@
|
||||
using Furion.DatabaseAccessor;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Vote.Services.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class outside_wall
|
||||
{
|
||||
/// <summary>
|
||||
/// Id主键
|
||||
/// </summary>
|
||||
[DisplayName("Id主键")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 社区id,关联三居系统社区id
|
||||
/// </summary>
|
||||
[DisplayName("社区id,关联三居系统社区id")]
|
||||
public string communityId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 社区/小区名称
|
||||
/// </summary>
|
||||
[DisplayName("社区/小区名称")]
|
||||
public string communityName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交付年份
|
||||
/// </summary>
|
||||
[DisplayName("交付年份")]
|
||||
public string deliveryear { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 楼栋数
|
||||
/// </summary>
|
||||
[DisplayName("楼栋数")]
|
||||
public decimal buildcount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 住户总数
|
||||
/// </summary>
|
||||
[DisplayName("住户总数")]
|
||||
public decimal? householdcount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总建筑面积
|
||||
/// </summary>
|
||||
[DisplayName("总建筑面积")]
|
||||
public decimal? totalfloorage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否存在外墙问题
|
||||
/// </summary>
|
||||
[DisplayName("是否存在外墙问题")]
|
||||
public int? isExistProblem { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题发生后是否请人修复了
|
||||
/// </summary>
|
||||
[DisplayName("问题发生后是否请人修复了")]
|
||||
public int? problemismodify { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请提供修复单位的名称
|
||||
/// </summary>
|
||||
[DisplayName("请提供修复单位的名称")]
|
||||
public string problemmodifyunitname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 修复后的部位是否再次发生问题
|
||||
/// </summary>
|
||||
[DisplayName("修复后的部位是否再次发生问题")]
|
||||
public int? problemmodifyisagain { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 联系方式
|
||||
/// </summary>
|
||||
[DisplayName("联系方式")]
|
||||
public string contract { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// createtime
|
||||
/// </summary>
|
||||
[DisplayName("createtime")]
|
||||
public DateTime? createtime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// isdeleted
|
||||
/// </summary>
|
||||
[DisplayName("isdeleted")]
|
||||
public int? isdeleted { get; set; }
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public List<outside_wall_photo> outside_wall_photos { get; set; }
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public List<outside_wall_building> outside_wall_buildings { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
159
20220330_Vote/Vote.Services/Entities/outside_wall_building.cs
Normal file
159
20220330_Vote/Vote.Services/Entities/outside_wall_building.cs
Normal file
@@ -0,0 +1,159 @@
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class outside_wall_building
|
||||
{
|
||||
/// <summary>
|
||||
/// Id主键
|
||||
/// </summary>
|
||||
[DisplayName("Id主键")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外墙id
|
||||
/// </summary>
|
||||
[DisplayName("外墙id")]
|
||||
public string outsidewallId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 幢Id 关联三居幢id
|
||||
/// </summary>
|
||||
[DisplayName("幢Id 关联三居幢id")]
|
||||
public string BuildingId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 幢名称
|
||||
/// </summary>
|
||||
[DisplayName("幢名称")]
|
||||
public string BuildingName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址
|
||||
/// </summary>
|
||||
[DisplayName("地址")]
|
||||
public string Address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 层数
|
||||
/// </summary>
|
||||
[DisplayName("层数")]
|
||||
public int? LevelCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总户数
|
||||
/// </summary>
|
||||
[DisplayName("总户数")]
|
||||
public int? Households { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 建设单位
|
||||
/// </summary>
|
||||
[DisplayName("建设单位")]
|
||||
public string BuildingUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设计单位
|
||||
/// </summary>
|
||||
[DisplayName("设计单位")]
|
||||
public string DesingerUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 施工单位
|
||||
/// </summary>
|
||||
[DisplayName("施工单位")]
|
||||
public string ConstructionUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 监理单位
|
||||
/// </summary>
|
||||
[DisplayName("监理单位")]
|
||||
public string MonitorUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物业单位
|
||||
/// </summary>
|
||||
[DisplayName("物业单位")]
|
||||
public string WuYeUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 墙体问题的类型是
|
||||
/// </summary>
|
||||
[DisplayName("墙体问题的类型是")]
|
||||
public string curwallproblems { get; set; }
|
||||
/// <summary>
|
||||
/// 墙体问题的类型-其他
|
||||
/// </summary>
|
||||
[DisplayName("墙体问题的类型-其他")]
|
||||
public string curwallproblemother { get; set; }
|
||||
/// <summary>
|
||||
/// 哪个问题最先开始出现
|
||||
/// </summary>
|
||||
[DisplayName("哪个问题最先开始出现")]
|
||||
public string wallproblemsfirst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 第一次出现墙体问题是建成后____年
|
||||
/// </summary>
|
||||
[DisplayName("第一次出现墙体问题是建成后____年")]
|
||||
public string firstproblemdate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 墙体脱落发生频率如何
|
||||
/// </summary>
|
||||
[DisplayName("墙体脱落发生频率如何")]
|
||||
public string problemfrequency { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题多发生在哪个季节
|
||||
/// </summary>
|
||||
[DisplayName("问题多发生在哪个季节")]
|
||||
public string problemseason { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 墙体问题发生的朝向是哪面
|
||||
/// </summary>
|
||||
[DisplayName("墙体问题发生的朝向是哪面")]
|
||||
public string wallproblemtoward { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发生外墙问题的范围有多大
|
||||
/// </summary>
|
||||
[DisplayName("发生外墙问题的范围有多大")]
|
||||
public string problemfanwei { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外墙问题发生在哪个高度
|
||||
/// </summary>
|
||||
[DisplayName("外墙问题发生在哪个高度")]
|
||||
public string problemheight { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 掉落物是什么
|
||||
/// </summary>
|
||||
[DisplayName("掉落物是什么")]
|
||||
public string diaoluowu { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// createtime
|
||||
/// </summary>
|
||||
[DisplayName("createtime")]
|
||||
public DateTime? createtime { get; set; }
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public List<outside_wall_building_photo> outside_wall_building_photos { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Ewide.Core;
|
||||
using Furion.DatabaseAccessor;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class outside_wall_building_photo
|
||||
{
|
||||
/// <summary>
|
||||
/// 朝向
|
||||
/// </summary>
|
||||
[DisplayName("朝向")]
|
||||
public string toward { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// outsidewallBuildingId
|
||||
/// </summary>
|
||||
[DisplayName("outsidewallBuildingId")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string outsidewallBuildingId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sysfileid
|
||||
/// </summary>
|
||||
[DisplayName("sysfileid")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string sysfileid { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
36
20220330_Vote/Vote.Services/Entities/outside_wall_photo.cs
Normal file
36
20220330_Vote/Vote.Services/Entities/outside_wall_photo.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using Furion.DatabaseAccessor;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class outside_wall_photo
|
||||
{
|
||||
/// <summary>
|
||||
/// outsidewallId
|
||||
/// </summary>
|
||||
[DisplayName("outsidewallId")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string outsidewallId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sysfileid
|
||||
/// </summary>
|
||||
[DisplayName("sysfileid")]
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string sysfileid { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user