add รายงานค่าสอนพิเศษ

This commit is contained in:
kamonwan taengsuk
2022-12-09 13:40:34 +07:00
parent 43d4d1c84b
commit 31a036e637
6 changed files with 539 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class operating_expenses
{
public string product { get; set; }
public string request_year { get; set; }
public List<operating_expenses_detail> data { get; set; }
}
public class operating_expenses_detail
{
public string no { get; set; }
public string expenditure_budget { get; set; }
public decimal? amount { get; set; }
public string clarification_summary { get; set; }
}
}