update
This commit is contained in:
22
Models/RoThree/material_ro_three.cs
Normal file
22
Models/RoThree/material_ro_three.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class material_ro_three
|
||||
{
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public List<material_ro_three_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class material_ro_three_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? material_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user