Infrastructure/OpenAuth.Repository/Domain/FireManagement/FmEnteringInfo.cs

103 lines
2.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain.FireManagement
{
/// <summary>
/// 进山记录
/// </summary>
[SugarTable("fm_enteringinfo")]
public class FmEnteringInfo
{
/// <summary>
/// Desc:流水号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
/// <summary>
/// Desc:人员名称
/// Default:
/// Nullable:True
/// </summary>
public string UserName { get; set; }
/// <summary>
/// Desc:人员电话
/// Default:
/// Nullable:True
/// </summary>
public string Phone { get; set; }
/// <summary>
/// Desc:进入方式1-扫码2-代填)
/// Default:
/// Nullable:False
/// </summary>
public int InType { get; set; }
/// <summary>
/// Desc:身份证号
/// Default:
/// Nullable:True
/// </summary>
public string CardNo { get; set; }
/// <summary>
/// Desc:联系地址
/// Default:
/// Nullable:True
/// </summary>
public string UserAddress { get; set; }
/// <summary>
/// Desc:进山时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime InTime { get; set; }
/// <summary>
/// Desc:站点ID
/// Default:
/// Nullable:False
/// </summary>
public long SiteId { get; set; }
/// <summary>
/// Desc:代替人ID
/// Default:
/// Nullable:True
/// </summary>
public string CreateUserId { get; set; }
/// <summary>
/// Desc:离山时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime OutTime { get; set; }
/// <summary>
/// Desc:原因
/// Default:
/// Nullable:True
/// </summary>
public string Reason { get; set; }
/// <summary>
/// Desc:登记类型1-进山2-出山)
/// Default:
/// Nullable:False
/// </summary>
public int RegistrationType { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName { get; set; }
}
}