Files
zszq-trs/Framework/YLErp.Core/DBModels/SysUpdateLog.cs
T
2024-05-09 14:06:26 +08:00

34 lines
719 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel.DataAnnotations;
namespace YLErp.DBModels
{
/// <summary>
/// 系统升级日志
/// </summary>
public class SysUpdateLog
{
public int id { get; set; }
[Required]
public string UpType { get; set; }
[Required]
public string UpKey { get; set; }
/// <summary>
/// -1:fail0pending1done
/// </summary>
public int UpState { get; set; }
/// <summary>
/// 更新结果信息
/// </summary>
public string UpResult { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
}
}