update ง 5

This commit is contained in:
kamonwan taengsuk
2023-02-20 12:29:38 +07:00
parent f8e4248d7f
commit 6b821f1615
3 changed files with 515 additions and 85 deletions

View File

@@ -21,7 +21,7 @@ namespace rmutr_report.Models
public string target_fourth { get; set; }
public string pin_fourth { get; set; }
public string principles_reasons { get; set; } //ข้อ 5
public string objective { get; set; } //ข้อ 6
public List<sixth_data> sixth { get; set; } //ข้อ 6
public List<seventh_data> seventh { get; set; } //ข้อ 7
public List<eighth_data> eighth { get; set; } //ข้อ 8
public List<ninth_data> ninth { get; set; } //ข้อ 9
@@ -42,6 +42,14 @@ namespace rmutr_report.Models
public List<seventeenth_data> seventeenth { get; set; } //ข้อ 17
public List<eighteenth_data> eighteenth { get; set; } //ข้อ 18
public List<nineteenth_data> nineteenth { get; set; } //ข้อ 19
public decimal? budget_amount { get; set; } //ข้อ 20
public List<twentieth_data> twentieth { get; set; } //ข้อ 20
public List<twenty_one_data> twenty_one { get; set; } //ข้อ 21
public List<twenty_two_data> twenty_two { get; set; } //ข้อ 22
public List<twenty_three_data> twenty_three { get; set; } //ข้อ 23
public List<twenty_four_data> twenty_four { get; set; } //ข้อ 24
public List<twenty_fifth_data> twenty_fifth { get; set; } //ข้อ 25
}
@@ -49,6 +57,11 @@ namespace rmutr_report.Models
{
public string activity { get; set; }
}
public class sixth_data
{
public string objective{ get; set; }
}
public class seventh_data
{
public string identity { get; set; }
@@ -283,5 +296,103 @@ namespace rmutr_report.Models
public decimal? total_amount { get; set; }
}
}
public class twentieth_data
{
public string action_plan { get; set; }
public string month_1 { get; set; }
public string month_2 { get; set; }
public string month_3 { get; set; }
public string month_4 { get; set; }
public string month_5 { get; set; }
public string month_6 { get; set; }
public string month_7 { get; set; }
public string month_8 { get; set; }
public string month_9 { get; set; }
public string month_10 { get; set; }
public string month_11 { get; set; }
public string month_12 { get; set; }
}
public class twenty_one_data
{
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public string text4 { get; set; }
public string text5 { get; set; }
public string text6 { get; set; }
public string text7 { get; set; }
public string text8 { get; set; }
public string text9 { get; set; }
public string text10 { get; set; }
public string bath { get; set; }
public string nuai_nap { get; set; }
public string khrang1 { get; set; }
public string khrang2 { get; set; }
public string rueang { get; set; }
public string activity { get; set; }
public string clause1 { get; set; }
public string count_unit { get; set; }
public string count_project { get; set; }
public string count_training { get; set; }
public string count_knowledge { get; set; }
public string clause2 { get; set; }
public string project_start_date { get; set; }
public string project_end_date { get; set; }
public string percentage_finish { get; set; }
public string clause3 { get; set; }
public string percentage1 { get; set; }
public string percentage2 { get; set; }
public string acquired_knowledge { get; set; }
public string detail { get; set; }
public string clause4 { get; set; }
public decimal? expenses { get; set; }
}
public class twenty_two_data
{
public string list { get; set; }
}
public class twenty_three_data
{
public string list { get; set; }
}
public class twenty_four_data
{
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public string text4 { get; set; }
public string text5 { get; set; }
public string text6 { get; set; }
public string responsible_person { get; set; }
public string agency { get; set; }
public string area { get; set; }
public string telephone_number { get; set; }
public string mobile_number { get; set; }
public string email { get; set; }
}
public class twenty_fifth_data
{
public string activity { get; set; }
public string activity_display_name { get; set; }
public string dates { get; set; }
public string location { get; set; }
public List<twenty_fifth_data_details> twenty_fifth_data_detail { get; set; }
}
public class twenty_fifth_data_details
{
public string dates { get; set; }
public string times { get; set; }
public string detail { get; set; }
public string lecturer { get; set; }
}
}