initdb默认string长度改为191

This commit is contained in:
pixel
2021-02-13 16:22:50 +08:00
parent 329d094e2a
commit 11efbe7699
9 changed files with 207 additions and 137 deletions

View File

@@ -1,16 +1,13 @@
import service from '@/utils/request'
// @Tags api
// @Summary 分页获取角色列表
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body modelInterface.PageInfo true "分页获取用户列表"
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /api/getApiList [post]
// {
// page int
// pageSize int
// }
export const preview = (data) => {
return service({
url: "/autoCode/preview",
method: 'post',
data,
})
}
export const createTemp = (data) => {
return service({
url: "/autoCode/createTemp",
@@ -20,7 +17,6 @@ export const createTemp = (data) => {
})
}
// @Tags SysApi
// @Summary 获取当前所有数据库
// @Security ApiKeyAuth