diff --git a/src/controllers/ReportController.ts b/src/controllers/ReportController.ts index 2cdb73a..26a76b1 100644 --- a/src/controllers/ReportController.ts +++ b/src/controllers/ReportController.ts @@ -555,4 +555,80 @@ export class ReportController extends Controller { data: formattedData, }); } + + /** + * API Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ได้รับทุนการศึกษา + * + * @summary DEV_0xx - Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ได้รับทุนการศึกษา #xx + * + */ + @Get("report3") + async report3() { + + + return new HttpSuccess({ + template: "reportFund3", + reportName: "reportFund3", + data: { + data: "", + }, + }); + } + /** + * API Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญ ที่ส่งไปพัฒนากับหน่วยงานภายนอก + * + * @summary DEV_0xx - Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญ ที่ส่งไปพัฒนากับหน่วยงานภายนอก #xx + * + */ + @Get("report4") + async report4() { + + + return new HttpSuccess({ + template: "reportFund4", + reportName: "reportFund4", + data: { + data: "", + }, + }); + } + /** + * API Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ไปศึกษา ฝึกอบรม ประชุม ดูงาน และปฏิบัติการวิจัย ณ ต่างประเทศ + * + * @summary DEV_0xx - Report รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ไปศึกษา ฝึกอบรม ประชุม ดูงาน และปฏิบัติการวิจัย ณ ต่างประเทศ #xx + * + */ + @Get("report5") + async report5() { + + + return new HttpSuccess({ + template: "reportFund5", + reportName: "reportFund5", + data: { + data: "", + }, + }); + } + /** + * API Report รายงานสถิติข้อมูลการศึกษาต่อ การฝึกอบรม ศึกษาดูงาน ของข้าราชการกรุงเทพมหานครสามัญ + * + * @summary DEV_0xx - Report รายงานสถิติข้อมูลการศึกษาต่อ การฝึกอบรม ศึกษาดูงาน ของข้าราชการกรุงเทพมหานครสามัญ #xx + * + */ + @Get("report6") + async report6() { + + + return new HttpSuccess({ + template: "reportFund6", + reportName: "reportFund6", + data: { + data: "", + }, + }); + } + } + + \ No newline at end of file