xiangpei
2025-04-18 ccadf9480d4e6a9dcc227a2a0b1f9ae0612e36fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import axios from "./request";
 
// 获取$!{table.comment}分页
export const get$!{vueInfo.name}s = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/page",
        method: "GET",
        params: params
    })
}
 
// 获取$!{table.comment}列表
export const get$!{vueInfo.name}List = () => {
    return axios({
        url: "/$!{controllerMappingHyphen}/list",
        method: "GET"
    })
}
 
// 通过id获取$!{table.comment}
export const get$!{vueInfo.name}ById = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/" + params,
        method: "GET"
    })
}
 
// 通过id删除$!{table.comment}
export const delete$!{vueInfo.name}ById = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/" + params,
        method: "DELETE"
    })
}
 
// 批量删除$!{table.comment}
export const delete$!{vueInfo.name}ByIds = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/batch",
        method: "DELETE",
        data: params
    })
}
 
// 修改$!{table.comment}
export const edit$!{vueInfo.name} = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/",
        method: "PUT",
        data: params
    })
}
 
// 添加$!{table.comment}
export const add$!{vueInfo.name} = (params) => {
    return axios({
        url: "/$!{controllerMappingHyphen}/",
        method: "POST",
        data: params
    })
}