อุทธรณ์ร้องทุกข์

This commit is contained in:
setthawutttty 2023-12-14 16:29:29 +07:00
parent 7777b27cda
commit c1f26bc764
12 changed files with 1139 additions and 308 deletions

View file

@ -0,0 +1,12 @@
import env from "../index"
const appeal = `${env.API_URI}/discipline/complaint_appeal`
const profile = `${env.API_URI}/profile/keycloak`
export default {
profileBykeycloak:()=>`${profile}`,
appealMainList:(status: string, type: string, year: number, page: number, pageSize: number, keyword: string)=>`${appeal}/user?status=${status}&type=${type}&year=${year}&page=${page}&pageSize=${pageSize}&keyword=${keyword}`,
appealAdd:()=>`${appeal}`,
appealByID:(id:string)=>`${appeal}/${id}`
}