56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("lecturer")]
|
|
public class Lecturer
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int? Authorid { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Honor { get; set; }
|
|
|
|
public string? Capacity { get; set; }
|
|
|
|
public string? Teachcapacity { get; set; }
|
|
|
|
public string? Img { get; set; }
|
|
|
|
public string? Portrait { get; set; }
|
|
|
|
public string? Code { get; set; }
|
|
|
|
public string? Memo { get; set; }
|
|
|
|
public string? Qrcode { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string? Risktips { get; set; }
|
|
|
|
public int? Deptid { get; set; }
|
|
|
|
public string? School { get; set; }
|
|
|
|
public string? Antecedents { get; set; }
|
|
public int? checkstatus { get; set; }
|
|
public int? issac { get; set; }
|
|
public int? operatorid { get; set; }
|
|
public string? operatorname { get; set; }
|
|
public int? OperatorDeptid { get; set; }
|
|
public string? DeptName { get; set; }
|
|
public List<ComplianceCheckStatus>? ComplianceCheckStatus { get; set; }
|
|
}
|
|
} |