add report

This commit is contained in:
kamonwan taengsuk
2023-04-20 14:26:20 +07:00
parent 348e6f2af9
commit f0c0c4f8d5
17 changed files with 1275 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class service_fee
{
public decimal? total_amount_1 { get; set; }
public decimal? total_amount_2 { get; set; }
public decimal? total_amount_all { get; set; }
public List<service_fee_detail> data { get; set; }
}
public class service_fee_detail
{
public string agency { get; set; }
public string list { get; set; }
public decimal? wage_rate_science { get; set; }
public decimal? wage_rate_social { get; set; }
}
}