ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
33
Models/HR/ProfileCurrentAddressHistory.cs
Normal file
33
Models/HR/ProfileCurrentAddressHistory.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileCurrentAddressHistory
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[MaxLength(200)]
|
||||
[Required]
|
||||
public string Address { get; set; }
|
||||
|
||||
[Required]
|
||||
public Guid SubDistrictId { get; set; }
|
||||
|
||||
[Required]
|
||||
public Guid DistrictId { get; set; }
|
||||
|
||||
[Required]
|
||||
public Guid ProvinceId { get; set; }
|
||||
|
||||
[MaxLength(5)]
|
||||
[Required]
|
||||
public string ZipCode { get; set; }
|
||||
|
||||
public DateTime CreatedDate { get; set; } = DateTime.Now;
|
||||
|
||||
public Profile Profile { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue