add report
This commit is contained in:
22
Models/budget/service_fee.cs
Normal file
22
Models/budget/service_fee.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user