add reports

This commit is contained in:
kamonwan taengsuk
2022-11-15 13:35:24 +07:00
parent 8a5101cfa9
commit 45037a9a80
9 changed files with 720 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections.Generic;
namespace rmutr_report.Models.HrDevelopment
{
public class company_database
{
public string faculty_name { get; set; }
public List<company_database_detail> data { get; set; }
}
public class company_database_detail
{
public string company_name { get; set; }
public string address { get; set; }
public string company_type { get; set; }
public string mou { get; set; }
public string phone_no { get; set; }
public string note { get; set; }
}
}