ทำหน้าจอพิเศษ นำเข้าข้อมูลเงินเดือนย้อนหลัง

This commit is contained in:
Nakorn Rientrakrunchai
2020-12-07 15:52:20 +07:00
parent 5ca2b0d53d
commit 8ac63e8ec6
44 changed files with 5165 additions and 42 deletions

View File

@@ -41,6 +41,19 @@ namespace TodoAPI2.Models
public int? managed_by { get; set; }
[MaxLength(1000)]
public string imported_file { get; set; }
[NotMapped]
public string imported_fileDisplay
{
get
{
return (string.IsNullOrEmpty(imported_file) ? "" :
FileUtil.GetFileInfo(TTSW.Constant.FilePathConstant.DirType.FilesTestUpload, id, imported_file).RelativePath).Replace(@"\", "/");
}
}
public DateTime? imported_date { get; set; }
}
}