fix bug api ออกคำสั่ง

และ รายงานคำสั่ง
This commit is contained in:
Suphonchai Phoonsawat 2023-09-06 13:25:50 +07:00
parent e340beb79d
commit ac07b6d07d
9 changed files with 130 additions and 60 deletions

View file

@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType01Response
{
public string CitizenId { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
public string Oc { get; set; } = string.Empty;
public string PositionName { get; set; } = string.Empty;
public string PositionLevel { get; set; } = string.Empty;
public string PositionType { get; set; } = string.Empty;
public string PositionNumber { get; set; } = string.Empty;
public double Salary { get; set; } = 0;
public string AppointDate { get; set; } = string.Empty;
public int ExamNumber { get; set; } = 0;
public string PlacementName { get; set;} = string.Empty;
}
}