26 lines
1 KiB
C#
26 lines
1 KiB
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class RetirementQuestionRequest
|
|
{
|
|
public Guid RetirementResignId { get; set; }
|
|
public List<int>? ReasonWork { get; set; }
|
|
public string? ReasonWorkOther { get; set; }
|
|
public int? TimeThink { get; set; }
|
|
public List<int>? ExitFactor { get; set; }
|
|
public string? ExitFactorOther { get; set; }
|
|
public List<int>? Adjust { get; set; }
|
|
public string? AdjustOther { get; set; }
|
|
public string? RealReason { get; set; }
|
|
public string? NotExitFactor { get; set; }
|
|
public bool? Havejob { get; set; }
|
|
public string? HavejobReason { get; set; }
|
|
public bool? SuggestFriends { get; set; }
|
|
public string? SuggestFriendsReason { get; set; }
|
|
public bool? FutureWork { get; set; }
|
|
public string? FutureWorkReason { get; set; }
|
|
public string? Suggestion { get; set; }
|
|
}
|
|
}
|