46 lines
957 B
C#
46 lines
957 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("zhibosystemplanlog")]
|
|
public class ZhiboSystemPlanLog
|
|
{
|
|
[Key]
|
|
public int Pkid { get; set; }
|
|
|
|
public int? Id { get; set; }
|
|
|
|
public string? Dept { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Lecturer { get; set; }
|
|
|
|
public DateTime? Zbdate { get; set; }
|
|
|
|
public DateTime? Zbtime { get; set; }
|
|
|
|
public int Duration { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public string? Files { get; set; }
|
|
|
|
public int? Scenetype { get; set; }
|
|
|
|
public int? Scene { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public int? Operaterid { get; set; }
|
|
|
|
public DateTime? Ctime { get; set; }
|
|
|
|
public string? Vscode { get; set; }
|
|
}
|
|
}
|