API ฟอร์มบันทึกหลักเกณฑ์

This commit is contained in:
STW_TTTY\stwtt 2024-04-18 18:09:32 +07:00
parent 838ae1ae3c
commit eedb90d155
3 changed files with 46 additions and 26 deletions

View file

@ -1,10 +1,12 @@
import env from "../index";
const KPI = `${env.API_URI}/kpi`;
const kpiPeriod = `${env.API_URI}/kpi/period`;
const kpiEvaluation = `${env.API_URI}/kpi/evaluation`;
export default {
KPI,
/** รอบการประเมินผล*/
kpiPeriod: `${kpiPeriod}`,
kpiPeriodById: (id: string) => `${kpiPeriod}/${id}`,
kpiEvaluation
};