You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
896 B
34 lines
896 B
namespace Tiobon.Core.Model;
|
|
|
|
public class Ghre_ExamRecordExtend : DefaultGhre_ExamPaperPageData
|
|
{
|
|
|
|
public CommentData CommentData { get; set; }
|
|
public StaffInfo StaffInfo { get; set; }
|
|
|
|
public long? PreviousRecordId { get; set; }
|
|
|
|
public long? NextRecordId { get; set; }
|
|
|
|
}
|
|
|
|
public class CommentData
|
|
{
|
|
public string Comment { get; set; }
|
|
public string StaffNo { get; set; }
|
|
public string StaffName { get; set; }
|
|
public string DeptNo { get; set; }
|
|
public string DepteName { get; set; }
|
|
public string PhotoUrl { get; set; }
|
|
public string TitleName { get; set; }
|
|
public bool? IsFirstTime { get; set; } = false;
|
|
}
|
|
|
|
public class StaffInfo
|
|
{
|
|
public string StaffNo { get; set; }
|
|
public string StaffName { get; set; }
|
|
public string DeptNo { get; set; }
|
|
public string DepteName { get; set; }
|
|
public decimal StaffScore { get; set; }
|
|
} |