ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
40
Models/HR/ProfileInsigniaHistory.cs
Normal file
40
Models/HR/ProfileInsigniaHistory.cs
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
using BMA.EHR.MetaData.Service.Models;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileInsigniaHistory : EntityBase
|
||||
{
|
||||
public int Year { get; set; }
|
||||
// [MaxLength(300)]
|
||||
// public string? Level { get; set; }
|
||||
[MaxLength(20)]
|
||||
public string? No { get; set; }
|
||||
[MaxLength(300)]
|
||||
public string? Issue { get; set; }
|
||||
[MaxLength(30)]
|
||||
public string? VolumeNo { get; set; }
|
||||
[MaxLength(30)]
|
||||
public string? Volume { get; set; }
|
||||
[MaxLength(30)]
|
||||
public string? Section { get; set; }
|
||||
[MaxLength(30)]
|
||||
public string? Page { get; set; }
|
||||
// public DateTime? DateStamp { get; set; }
|
||||
public DateTime? DateAnnounce { get; set; }
|
||||
// public DateTime? EndDate { get; set; }
|
||||
|
||||
// public int? Year { get; set; }
|
||||
public DateTime? ReceiveDate { get; set; }
|
||||
public string? InsigniaType { get; set; }
|
||||
public string? Insignia { get; set; }
|
||||
public Guid? InsigniaId { get; set; }
|
||||
// public string? No { get; set; }
|
||||
// public string? GazetteNo { get; set; }
|
||||
// public string? Volume { get; set; }
|
||||
// public string? Book { get; set; }
|
||||
// public string? Section { get; set; }
|
||||
// public string? Page { get; set; }
|
||||
public virtual ProfileInsignia? ProfileInsignia { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue