56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.Domain.Application.FaceAll
|
|
{
|
|
/// <summary>
|
|
/// 人脸机绑定表
|
|
/// </summary>
|
|
public class FaceBinding
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
|
public int ID { get; set; }
|
|
/// <summary>
|
|
/// SN号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)]
|
|
public string SerialNo { get; set; }
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(20)", IsNullable = true)]
|
|
public string Operator { get; set; }
|
|
/// <summary>
|
|
/// 操作类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "bit", IsNullable = true)]
|
|
|
|
public Nullable<bool> OperatorType { get; set; }
|
|
/// <summary>
|
|
/// 绑定时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
|
|
|
public Nullable<System.DateTime> bindingDate { get; set; }
|
|
/// <summary>
|
|
/// 酒店id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> HotelCode { get; set; }
|
|
/// <summary>
|
|
/// 房间id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> RoomId { get; set; }
|
|
}
|
|
}
|