ปรับปรุงให้รองรับ การไปช่วยปฏิบัติงาน

This commit is contained in:
Nakorn Rientrakrunchai
2021-03-11 08:03:52 +07:00
parent b5e24a048d
commit 1540543f1f
17 changed files with 1066 additions and 446 deletions

View File

@@ -35,8 +35,8 @@ namespace TodoAPI2.Models
[MaxLength(4000)]
public string remark { get; set; }
public void SetAutoField(DataContext context)
public int? main_dept_id { get; set; }
public void SetAutoField(DataContext context)
{
}

View File

@@ -31,5 +31,12 @@ namespace TodoAPI2.Models
public DateTime? frame_plan_guid_eva_limit_frame_plan_executed_date { get; set; }
public string group_guid_eva_evaluation_group_code { get; set; }
public string remark_formatted {
get
{
if (remark == null) remark = "";
return remark.Replace("\n", "<br/>");
}
}
}
}