You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
import request from '@/config/axios'
|
|
|
|
export interface ErrorCodeVO {
|
|
id: number | undefined
|
|
type: number
|
|
applicationName: string
|
|
code: number | undefined
|
|
message: string
|
|
memo: string
|
|
createTime: Date
|
|
}
|
|
|
|
// 查询错误码列表
|
|
export const getErrorCodePage = (params: PageParam) => {
|
|
return request.get({ url: '/system/error-code/page', params })
|
|
}
|
|
|
|
// 查询错误码详情
|
|
export const getErrorCode = (id: number) => {
|
|
return request.get({ url: '/system/error-code/get?id=' + id })
|
|
}
|
|
|
|
// 新增错误码
|
|
export const createErrorCode = (data: ErrorCodeVO) => {
|
|
return request.post({ url: '/system/error-code/create', data })
|
|
}
|
|
|
|
// 修改错误码
|
|
export const updateErrorCode = (data: ErrorCodeVO) => {
|
|
return request.put({ url: '/system/error-code/update', data })
|
|
}
|
|
|
|
// 删除错误码
|
|
export const deleteErrorCode = (id: number) => {
|
|
return request.delete({ url: '/system/error-code/delete?id=' + id })
|
|
}
|
|
// 导出错误码
|
|
export const excelErrorCode = (params) => {
|
|
return request.download({ url: '/system/error-code/export-excel', params })
|
|
}
|
|
|