1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import request from '@/config/axios'
- export interface ErrorCodeVO {
- id: number
- type: number
- applicationName: string
- code: number
- message: string
- memo: string
- createTime: string
- }
- export interface ErrorCodePageReqVO extends PageParam {
- type?: number
- applicationName?: string
- code?: number
- message?: string
- createTime?: string[]
- }
- // 查询错误码列表
- export const getErrorCodePageApi = (params: ErrorCodePageReqVO) => {
- return request.get({ url: '/system/error-code/page', params })
- }
- // 查询错误码详情
- export const getErrorCodeApi = (id: number) => {
- return request.get({ url: '/system/error-code/get?id=' + id })
- }
- // 新增错误码
- export const createErrorCodeApi = (data: ErrorCodeVO) => {
- return request.post({ url: '/system/error-code/create', data })
- }
- // 修改错误码
- export const updateErrorCodeApi = (data: ErrorCodeVO) => {
- return request.put({ url: '/system/error-code/update', data })
- }
- // 删除错误码
- export const deleteErrorCodeApi = (id: number) => {
- return request.delete({ url: '/system/error-code/delete?id=' + id })
- }
- // 导出错误码
- export const excelErrorCodeApi = (params: ErrorCodePageReqVO) => {
- return request.download({ url: '/system/error-code/export-excel', params })
- }
|