add report

This commit is contained in:
kamonwan taengsuk
2023-01-23 18:00:30 +07:00
parent f545aaf812
commit 4417115ce8
2 changed files with 204 additions and 0 deletions

View 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; }
}
}