ทำเรื่องอนุมัติวงเงิน

This commit is contained in:
nakorn
2022-05-02 10:53:45 +07:00
parent 42e1878aa8
commit 086f101d0f
39 changed files with 1193 additions and 42 deletions

View File

@@ -76,5 +76,15 @@ namespace TodoAPI2.Models
public int? quota_status_by { get; set; }
[MaxLength(1000)]
public string quota_status_note { get; set; }
public int? quota_status_submit_to { get; set; }
[MaxLength(5)]
public string quota_final_status { get; set; }
public DateTime? quota_final_status_date { get; set; }
[MaxLength(255)]
public int? quota_final_status_by { get; set; }
[MaxLength(1000)]
public string quota_final_status_note { get; set; }
}
}