using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
using WIDESEAWCS_Core.DB.Models;
|
using WIDESEAWCS_Core.Tenants;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
[SugarTable("Dt_FaceRecognition", "人脸识别表"), MultiTenant]
|
public class Dt_FaceRecognition:BaseEntity
|
{
|
/// <summary>
|
/// id
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
/// <summary>
|
/// 人脸识别组
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "人脸识别组")]
|
public string GroupID { get; set; }
|
}
|
}
|