add report endpoint fund 3 - 10

This commit is contained in:
AdisakKanthawilang 2025-02-11 19:23:29 +07:00
parent dd8996336b
commit 4fdbc3fdcf

View file

@ -555,4 +555,152 @@ 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: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report7")
async report7() {
return new HttpSuccess({
template: "reportFund7",
reportName: "reportFund7",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report8")
async report8() {
return new HttpSuccess({
template: "reportFund8",
reportName: "reportFund8",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report9")
async report9() {
return new HttpSuccess({
template: "reportFund9",
reportName: "reportFund9",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report10")
async report10() {
return new HttpSuccess({
template: "reportFund",
reportName: "reportFund10",
data: {
data: "",
},
});
}
}