add field

This commit is contained in:
kamonwan taengsuk
2023-01-19 21:22:05 +07:00
parent cb9742c514
commit f545aaf812
2 changed files with 69 additions and 54 deletions

View File

@@ -4,8 +4,13 @@ namespace rmutr_report.Models
{
public class operating_expenses
{
public string budget_year { get; set; }
public string plan { get; set; }
public string product { get; set; }
public string agency { get; set; }
public string area { get; set; }
public string request_year { get; set; }
public decimal? total_amount { get; set; }
public List<operating_expenses_detail> data { get; set; }
}