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