add report
This commit is contained in:
22
Models/budget/house_for_rent.cs
Normal file
22
Models/budget/house_for_rent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class house_for_rent
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string plan { get; set; }
|
||||
public string product { get; set; }
|
||||
public string salary_date { get; set; }
|
||||
public List<house_for_rent_detail> data { get; set; }
|
||||
}
|
||||
public class house_for_rent_detail{
|
||||
public string no { get; set; }
|
||||
public string display_name_th { get; set; }
|
||||
public string level { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
|
||||
public decimal? per_month { get; set; }
|
||||
public decimal? per_year { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user