82 lines
3.5 KiB
C#
82 lines
3.5 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
namespace BMA.EHR.Domain.Models.Retirement
|
|
{
|
|
public class RetirementQuestionnaireQuestion : EntityBase
|
|
{
|
|
[Comment("คำถามข้อที่ 1")]
|
|
public string? Question1Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 1")]
|
|
public string? Question1Score { get; set; }
|
|
[Comment("กรอกคะแนน 1")]
|
|
public string? Question1Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 2")]
|
|
public string? Question2Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 2")]
|
|
public string? Question2Score { get; set; }
|
|
[Comment("กรอกคะแนน 2")]
|
|
public string? Question2Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 3")]
|
|
public string? Question3Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 3")]
|
|
public string? Question3Score { get; set; }
|
|
[Comment("กรอกคะแนน 3")]
|
|
public string? Question3Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 4")]
|
|
public string? Question4Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 4")]
|
|
public string? Question4Score { get; set; }
|
|
[Comment("กรอกคะแนน 4")]
|
|
public string? Question4Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 5")]
|
|
public string? Question5Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 5")]
|
|
public string? Question5Score { get; set; }
|
|
[Comment("กรอกคะแนน 5")]
|
|
public string? Question5Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 6")]
|
|
public string? Question6Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 6")]
|
|
public string? Question6Score { get; set; }
|
|
[Comment("กรอกคะแนน 6")]
|
|
public string? Question6Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 7")]
|
|
public string? Question7Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 7")]
|
|
public string? Question7Score { get; set; }
|
|
[Comment("กรอกคะแนน 7")]
|
|
public string? Question7Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 8")]
|
|
public string? Question8Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 8")]
|
|
public string? Question8Score { get; set; }
|
|
[Comment("กรอกคะแนน 8")]
|
|
public string? Question8Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 9")]
|
|
public string? Question9Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 9")]
|
|
public string? Question9Score { get; set; }
|
|
[Comment("กรอกคะแนน 9")]
|
|
public string? Question9Answer { get; set; }
|
|
|
|
[Comment("คำถามข้อที่ 10")]
|
|
public string? Question10Desc { get; set; }
|
|
[Comment("คำตอบข้อที่ 10")]
|
|
public string? Question10Score { get; set; }
|
|
[Comment("กรอกคะแนน 10")]
|
|
public string? Question10Answer { get; set; }
|
|
}
|
|
}
|