52 lines
2.6 KiB
C#
52 lines
2.6 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
{
|
|
public class DisciplineInvestigateComplaintRequest
|
|
{
|
|
public DisciplineInvestigateComplaintProfileRequest[] persons { get; set; }// กรณีบุคคลใส่ id คน มาใน array แต่ถ้าเป็น type อื่นจะ null
|
|
public string title { get; set; }// *เรื่องที่ร้องเรียน
|
|
public string description { get; set; }// *รายละเอียดของเรื่องร้องเรียน
|
|
public string offenseDetails { get; set; }// *ลักษณะความผิดครั้งแรกจะเป็น "ยังไม่ระบุ" (NOT_SPECIFIED คือ ยังไม่ระบุ, NOT_DEADLY คือ ไม่ร้ายแรง, DEADLY คือ ร้ายแรง)
|
|
}
|
|
public class DisciplineInvestigateComplaintProfileRequest
|
|
{
|
|
public string? personId { get; set; }
|
|
public string? idcard { get; set; }
|
|
public string? prefix { get; set; }
|
|
public string? firstName { get; set; }
|
|
public string? lastName { get; set; }
|
|
public string? organization { get; set; }
|
|
public string? position { get; set; }
|
|
// public string? positionLevel { get; set; }
|
|
public string? posNo { get; set; }
|
|
public double? salary { get; set; }
|
|
|
|
public string? root { get; set; }
|
|
public string? rootId { get; set; }
|
|
public string? rootDnaId { get; set; }
|
|
public string? rootShortName { get; set; }
|
|
public string? child1 { get; set; }
|
|
public string? child1Id { get; set; }
|
|
public string? child1DnaId { get; set; }
|
|
public string? child1ShortName { get; set; }
|
|
public string? child2 { get; set; }
|
|
public string? child2Id { get; set; }
|
|
public string? child2DnaId { get; set; }
|
|
public string? child2ShortName { get; set; }
|
|
public string? child3 { get; set; }
|
|
public string? child3Id { get; set; }
|
|
public string? child3DnaId { get; set; }
|
|
public string? child3ShortName { get; set; }
|
|
public string? child4 { get; set; }
|
|
public string? child4Id { get; set; }
|
|
public string? child4DnaId { get; set; }
|
|
public string? child4ShortName { get; set; }
|
|
public int? posMasterNo { get; set; }
|
|
public string? posTypeId { get; set; }
|
|
public string? posTypeName { get; set; }
|
|
public string? posLevelId { get; set; }
|
|
public string? posLevelName { get; set; }
|
|
public string? profileType { get; set; }
|
|
}
|
|
}
|