bug fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-11-23 17:12:25 +07:00
parent 3a2f956d02
commit 5ba7919b29
16 changed files with 836 additions and 472 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class land_rent
{
public string budget_year { get; set; }
public decimal? total_amount { get; set; }
public List<land_rent_data_datail> data { get; set; }
}
public class land_rent_data_datail
{
public string list { get; set; }
public decimal? amount { get; set; }
public string unit { get; set; }
public decimal? unit_price { get; set; }
public decimal? total_amount { get; set; }
}
}