schangxiang@126.com
2025-05-08 c406bd1c50a8bf05bfb48fee14304a3b3a522335
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ÅäÖÃ$ChinaComment$·½·¨
//·ÖÒ³»ñÈ¡$ChinaComment$Áбí
export const get$Modulelogo$ListPage = params => {
    return axios.post(`${base}/api/$EntityName$/get`, params);
};
//ɾ³ý$ChinaComment$
export const remove$Modulelogo$ = params => {
    return axios.delete(`${base}/api/$EntityName$/delete`, { params: params });
};
//±à¼­$ChinaComment$
export const edit$Modulelogo$ = params => {
    return axios.put(`${base}/api/$EntityName$/put`, params);
};
//Ìí¼Ó$ChinaComment$
export const add$Modulelogo$ = params => {
    return axios.post(`${base}/api/$EntityName$/post`, params);
};