宁波既有建筑外墙脱落问卷调查
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user