อนุมัติและส่งต่อ การปรับเลื่อน ค่าตอบแทน

This commit is contained in:
nakorn
2022-05-01 12:20:21 +07:00
parent 32280778e6
commit 42e1878aa8
21 changed files with 2503 additions and 0 deletions

View File

@@ -58,5 +58,23 @@ namespace TodoAPI2.Models
public string report_type { get; set; }
public DateTime? imported_date { get; set; }
[MaxLength(5)]
public string postponement_status { get; set; }
public DateTime? postponement_status_date { get; set; }
[MaxLength(255)]
public int? postponement_status_by { get; set; }
[MaxLength(1000)]
public string postponement_status_note { get; set; }
[MaxLength(5)]
public string quota_status { get; set; }
public DateTime? quota_status_date { get; set; }
[MaxLength(255)]
public int? quota_status_by { get; set; }
[MaxLength(1000)]
public string quota_status_note { get; set; }
}
}