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

This commit is contained in:
kamonwan taengsuk
2023-09-06 13:52:07 +07:00
parent 06f8d47af3
commit 670bb37581
14 changed files with 139 additions and 88 deletions

View File

@@ -303,10 +303,12 @@ namespace rmutr_report.Models
{
public string header_name1 { get; set; }
public string header_name2 { get; set; }
//public string header_name3 { get; set; }
public string header_name3 { get; set; }
public string header_name4 { get; set; }
public List<nineteenth2_data_details> nineteenths_expenses1 { get; set; }
public List<nineteenth2_data_details2> nineteenths_expenses2 { get; set; }
public List<nineteenth2_data_details3> nineteenths_expenses3 { get; set; }
public List<nineteenth2_data_details2> nineteenths_expenses3 { get; set; }
public List<nineteenth2_data_details2> nineteenths_expenses4 { get; set; }
}
public class nineteenth2_data_details
@@ -326,23 +328,23 @@ namespace rmutr_report.Models
public decimal? total_amount { get; set; }
}
public class nineteenth2_data_details3
{
// public class nineteenth2_data_details3
// {
public string header_name3 { get; set; }
public List<nineteenths_expenses3_detail> nineteenths_expenses3_details { get; set; }
//public string header_name3 { get; set; }
//public List<nineteenths_expenses3_detail> nineteenths_expenses3_details { get; set; }
}
//}
public class nineteenths_expenses3_detail
{
public string name { get; set; }
public decimal? amount { get; set; }
public decimal? potion { get; set; }
public decimal? count_person { get; set; }
public decimal? total_amount { get; set; }
}
// public class nineteenths_expenses3_detail
// {
// public string name { get; set; }
// public decimal? amount { get; set; }
// public decimal? potion { get; set; }
// public decimal? count_person { get; set; }
// public decimal? total_amount { get; set; }
// }
public class nineteenth_data_detail3
{