2023-03-13 12:29:56 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
2026-05-12 16:32:46 +07:00
|
|
|
|
namespace BMA.EHR.Recruit.Models.Recruits
|
2023-03-13 12:29:56 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class RecruitOccupation : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[MaxLength(200)]
|
|
|
|
|
|
public string Occupation { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(200)]
|
|
|
|
|
|
public string WorkAge { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(200)]
|
|
|
|
|
|
public string Position { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(200)]
|
|
|
|
|
|
public string Workplace { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(200)]
|
|
|
|
|
|
public string Telephone { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Recruit Recruit { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|