ComplianceServer/code/Hg.Core.Entity/Dncmsbase/ZhiboSystemPlanStatusLog.cs

36 lines
762 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.Dncmsbase
{
[Table("zhibosystemplanstatuslog")]
public class ZhiboSystemPlanStatusLog
{
[Key]
public int Id { get; set; }
public DateTime? Ctime { get; set; }
public int? Planid { get; set; }
public string? Vscode { get; set; }
public int? Status { get; set; }
public string? Statusname { get; set; }
public string? Memo { get; set; }
public int? Noticetimes { get; set; }
public int? Operatorid { get; set; }
public int? Noticestatus { get; set; }
public DateTime? Noticetime { get; set; }
}
}