| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import request from '@/utils/request'
- export function listFastgptFastgptpushtokentotal(query) {
- return request({
- url: '/qw/qwPushCount/tokenList',
- method: 'get',
- params: query
- })
- }
- export function getFastgptFastgptpushtokentotal(id) {
- return request({
- url: '/qw/qwPushCount/tokenList/' + id,
- method: 'get'
- })
- }
- export function addFastgptFastgptpushtokentotal(data) {
- return request({
- url: '/qw/qwPushCount/tokenList',
- method: 'post',
- data: data
- })
- }
- export function updateFastgptFastgptpushtokentotal(data) {
- return request({
- url: '/qw/qwPushCount/tokenList',
- method: 'put',
- data: data
- })
- }
- export function delFastgptFastgptpushtokentotal(id) {
- return request({
- url: '/qw/qwPushCount/tokenList/' + id,
- method: 'delete'
- })
- }
- export function exportFastgptFastgptpushtokentotal(query) {
- return request({
- url: '/qw/qwPushCount/tokenList/export',
- method: 'get',
- params: query
- })
- }
|