37 lines
879 B
C#
37 lines
879 B
C#
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; }
|
|
|
|
}
|
|
}
|