This commit is contained in:
22
Models/RoReport/consultant_compensation.cs
Normal file
22
Models/RoReport/consultant_compensation.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class consultant_compensation
|
||||
{
|
||||
public int? topic_type { get; set; } //1 2 3 4 5 6
|
||||
public string topic_name { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
public List<consultant_compensation_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class consultant_compensation_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? quantity_day { get; set; }
|
||||
public decimal? quantity_person { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user