bug fixed

This commit is contained in:
kamonwan taengsuk
2023-03-21 14:51:57 +07:00
parent 7ab38fe667
commit a66245e4dc
2 changed files with 457 additions and 373 deletions

View File

@@ -15,21 +15,22 @@ namespace rmutr_report.Models
public class teaching_fee_extra_detail
{
public string course { get; set; }
public decimal? number_of_hours1 { get; set; }
public decimal? number_of_weeks1 { get; set; }
public decimal? amount1 { get; set; }
public decimal? number_of_hours2 { get; set; }
public decimal? number_of_weeks2 { get; set; }
public decimal? amount2 { get; set; }
public decimal? total_amount { get; set; }
// public string course { get; set; }
// public decimal? number_of_hours1 { get; set; }
// public decimal? number_of_weeks1 { get; set; }
// public decimal? amount1 { get; set; }
// public decimal? number_of_hours2 { get; set; }
// public decimal? number_of_weeks2 { get; set; }
// public decimal? amount2 { get; set; }
// public decimal? total_amount { get; set; }
public string major { get; set; }
public List<teaching_fee_extra_datadetail> datadetail { get; set; }
}
public class teaching_fee_extra_datadetail
{
public string teacher { get; set; }
public bool? is_color { get; set; }
public string course { get; set; }
public string teaching_rate { get; set; }
public decimal? number_of_hours1 { get; set; }
public decimal? number_of_weeks1 { get; set; }