This commit is contained in:
dute7liang
2023-12-30 23:47:53 +08:00
parent c7453cd9a6
commit 89d50bbb67
4 changed files with 875 additions and 0 deletions

44
src/api/cai/userCount.js Normal file
View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询用户信息数量统计列表
export function listUserCount(query) {
return request({
url: '/cai/userCount/list',
method: 'get',
params: query
})
}
// 查询用户信息数量统计详细
export function getUserCount(userId) {
return request({
url: '/cai/userCount/' + userId,
method: 'get'
})
}
// 新增用户信息数量统计
export function addUserCount(data) {
return request({
url: '/cai/userCount',
method: 'post',
data: data
})
}
// 修改用户信息数量统计
export function updateUserCount(data) {
return request({
url: '/cai/userCount',
method: 'put',
data: data
})
}
// 删除用户信息数量统计
export function delUserCount(userId) {
return request({
url: '/cai/userCount/' + userId,
method: 'delete'
})
}