36 lines
783 B
C#
36 lines
783 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("zhibosystemplancheckstatuslog")]
|
|
public class ZhibosySytemPlanCheckStatusLog
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public DateTime? Ctime { get; set; }
|
|
|
|
public int? Planid { get; set; }
|
|
|
|
public string? Vscode { get; set; }
|
|
|
|
public int? Checkstatus { get; set; }
|
|
|
|
public string? Checkstatusname { 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; }
|
|
}
|
|
}
|