update data

This commit is contained in:
kamonwan taengsuk
2023-03-15 16:20:48 +07:00
parent e742276bf0
commit 9b9e90b0df
2 changed files with 63 additions and 59 deletions

View File

@@ -36,11 +36,11 @@ namespace rmutr_report.Models
public string quantity_user_teaching { get; set; }
public string quantity_user_training { get; set; }
public string description_included { get; set; }
public string description_more1 { get; set; }
public string description_more2 { get; set; }
public string image_description1 { get; set; }
public string image_description2 { get; set; }
//public List<specification_datas> specification_data { get; set; }
// public string description_more1 { get; set; }
// public string description_more2 { get; set; }
// public string image_description1 { get; set; }
// public string image_description2 { get; set; }
public List<descript_more> descript_more { get; set; }
public string specification { get; set; }
// public string quantity_specification { get; set; }
// public decimal? unit_price_specification { get; set; }
@@ -54,9 +54,11 @@ namespace rmutr_report.Models
public string other_clarifications { get; set; }
public List<quotations> quotation { get; set; }
//public string analysis_durable { get; set; }
public List<analysis_durables> analysis { get; set; }
public string investment_budget_analysis { get; set; }
public List<investment_budget_analysis> investment { get; set; }
//public List<analysis_durables> analysis { get; set; }
//public string investment_budget_analysis { get; set; }
public string cases { get; set; }
public List<investment_budget_analysis> invest_detail { get; set; }
//public string show_cases { get; set; }
// public string text1 { get; set; }
// public string text2 { get; set; }
@@ -83,6 +85,12 @@ namespace rmutr_report.Models
public string detail { get; set; }
}
public class descript_more
{
public string descript { get; set; }
public string image_description { get; set; }
}
// public class specification_datas
// {
// public string specification { get; set; }
@@ -130,22 +138,26 @@ namespace rmutr_report.Models
public class quotations
{
public string company { get; set; }
public string url_file { get; set; }
public decimal? limit_price { get; set; }
}
public class analysis_durables
{
public string list { get; set; }
}
// public class analysis_durables
// {
// public string list { get; set; }
// }
public class investment_budget_analysis
{
public string cases { get; set; }
public List<investment_budget_analysis_details> detail { get; set; }
public string list { get; set; }
public string answer { get; set; }
public string remark { get; set; }
//public List<investment_budget_analysis_details> detail { get; set; }
}
public class investment_budget_analysis_details
{
public string list { get; set; }
}
// public class investment_budget_analysis_details
// {
//
// public string list { get; set; }
// }
}