25 lines
528 B
C#
25 lines
528 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|
{
|
|
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; }
|
|
}
|
|
}
|