| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import service from '@/utils/request'
- // @Tags SysDictionary
- // @Summary 创建SysDictionary
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysDictionary true "创建SysDictionary"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /sysDictionary/createSysDictionary [post]
- export const createSysDictionary = (data) => {
- return service({
- url: '/sysDictionary/createSysDictionary',
- method: 'post',
- data
- })
- }
- // @Tags SysDictionary
- // @Summary 删除SysDictionary
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysDictionary true "删除SysDictionary"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
- // @Router /sysDictionary/deleteSysDictionary [delete]
- export const deleteSysDictionary = (data) => {
- return service({
- url: '/sysDictionary/deleteSysDictionary',
- method: 'delete',
- data
- })
- }
- // @Tags SysDictionary
- // @Summary 更新SysDictionary
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysDictionary true "更新SysDictionary"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
- // @Router /sysDictionary/updateSysDictionary [put]
- export const updateSysDictionary = (data) => {
- return service({
- url: '/sysDictionary/updateSysDictionary',
- method: 'put',
- data
- })
- }
- // @Tags SysDictionary
- // @Summary 用id查询SysDictionary
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.SysDictionary true "用id查询SysDictionary"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
- // @Router /sysDictionary/findSysDictionary [get]
- export const findSysDictionary = (params) => {
- return service({
- url: '/sysDictionary/findSysDictionary',
- method: 'get',
- params
- })
- }
- // @Tags SysDictionary
- // @Summary 分页获取SysDictionary列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body request.PageInfo true "分页获取SysDictionary列表"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /sysDictionary/getSysDictionaryList [get]
- export const getSysDictionaryList = (params) => {
- return service({
- url: '/sysDictionary/getSysDictionaryList',
- method: 'get',
- params
- })
- }
|