API ตามแผน
This commit is contained in:
parent
3689cbae28
commit
778dd3a4ed
1 changed files with 4 additions and 1 deletions
|
|
@ -3,6 +3,7 @@ const KPI = `${env.API_URI}/kpi`;
|
|||
const kpiPeriod = `${env.API_URI}/kpi/period`;
|
||||
const kpiEvaluation = `${env.API_URI}/kpi/evaluation`;
|
||||
const kpiGroup = `${env.API_URI}/kpi/group`;
|
||||
const kpiPlan = `${env.API_URI}/kpi/plan`;
|
||||
export default {
|
||||
KPI,
|
||||
/** รอบการประเมินผล*/
|
||||
|
|
@ -16,5 +17,7 @@ export default {
|
|||
|
||||
|
||||
kpiGroup,
|
||||
kpiGroupById: (id: string) => `${kpiGroup}/${id}`
|
||||
kpiGroupById: (id: string) => `${kpiGroup}/${id}`,
|
||||
kpiPlan,
|
||||
kpiPlanById: (id: string) => `${kpiPlan}/${id}`,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue