Add MetaData Table From ExistData
Change to use MySQL
This commit is contained in:
parent
89de09d213
commit
a0b3b13074
136 changed files with 3438 additions and 1237 deletions
29
BMA.EHR.Domain/Models/HR/ProfileAssessment.cs
Normal file
29
BMA.EHR.Domain/Models/HR/ProfileAssessment.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileAssessment : EntityBase
|
||||
{
|
||||
[Comment("ชื่อแบบประเมิน")]
|
||||
public string? Name { get; set; }
|
||||
[Comment("วันที่ได้รับ")]
|
||||
public DateTime? Date { get; set; }
|
||||
[Comment("ส่วนที่1 (คะแนน)")]
|
||||
public double? Point1Total { get; set; }
|
||||
[Comment("ผลประเมินส่วนที่1 (คะแนน)")]
|
||||
public double? Point1 { get; set; }
|
||||
[Comment("ส่วนที่2 (คะแนน)")]
|
||||
public double? Point2Total { get; set; }
|
||||
[Comment("ผลประเมินส่วนที่2 (คะแนน)")]
|
||||
public double? Point2 { get; set; }
|
||||
[Comment("ผลรวม (คะแนน)")]
|
||||
public double? PointSumTotal { get; set; }
|
||||
[Comment("ผลประเมินรวม (คะแนน)")]
|
||||
public double? PointSum { get; set; }
|
||||
public virtual List<ProfileAssessmentHistory> ProfileAssessmentHistorys { get; set; } = new List<ProfileAssessmentHistory>();
|
||||
public virtual Profile? Profile { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue