no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-08 16:59:57 +07:00
parent bf20e7d28c
commit 1fb4478394
2 changed files with 70 additions and 30 deletions

View file

@ -2,6 +2,7 @@ import env from "../index";
const organization = `${env.API_URI}/org`;
const orgPos = `${env.API_URI}/org/pos`;
const orgProfile = `${env.API_URI}/org/profile`;
export default {
/** โครงสร้างอัตรากำลัง*/
@ -32,5 +33,10 @@ export default {
orgPosExecutiveById: (id: string) => `${orgPos}/executive/${id}`,
orgPosHistory: (id: string) => `${orgPos}/history/${id}`,
orgSalaryPosition:`${orgPos}/position?keyword=&type=ALL`,
orgSalaryPosition: `${orgPos}/position?keyword=&type=ALL`,
/**ครองตำแหน่ง */
orgSearchProfile: `${orgProfile}/search`,
orgProfile: `${orgProfile}`,
orgDeleteProfile: (id: string) => `${orgProfile}/delete/${id}`,
};