宁波既有建筑外墙脱落问卷调查
This commit is contained in:
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