LV1_006 - เช็คเวลาต้องลงเวลาเข้าหรือออกงาน (USER)
This commit is contained in:
parent
c9f68b045b
commit
065314fd6c
20 changed files with 967 additions and 258 deletions
22
BMA.EHR.Leave.Service/DTOs/CheckIn/CheckInResultDto.cs
Normal file
22
BMA.EHR.Leave.Service/DTOs/CheckIn/CheckInResultDto.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Command.Service.DTOs.CheckIn
|
||||
{
|
||||
public class CheckInResultDto
|
||||
{
|
||||
public Guid? CheckInId { get; set; }
|
||||
|
||||
public DateTime? CheckInTime { get; set; }
|
||||
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public string StartTimeMorning { get; set; } = "00:00";
|
||||
|
||||
public string EndTimeMorning { get; set; } = "00:00";
|
||||
|
||||
public string StartTimeAfternoon { get; set; } = "00:00";
|
||||
|
||||
public string EndTimeAfternoon { get; set; } = "00:00";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue