44 lines
990 B
C#
44 lines
990 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.Repository.Domain.FireManagement
|
|||
|
|
{
|
|||
|
|
[SugarTable("fm_earlywarninghandle")]
|
|||
|
|
public class FmEarlyEarningHandle
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关闭原因
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关闭原因
|
|||
|
|
/// </summary>
|
|||
|
|
public string Reason { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关闭时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime? CreateTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关闭人
|
|||
|
|
/// </summary>
|
|||
|
|
public string CreateUserId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 预警Id
|
|||
|
|
/// </summary>
|
|||
|
|
public long WaringId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 关闭人姓名
|
|||
|
|
/// </summary>
|
|||
|
|
public string CreateUserName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|