db9c79c0
“wangming”
feat: punch-based...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import request from '@/utils/request'
/** 用户主档全量时点版本分页(R-004),GET 使用 data 传参 */
export function getUserProfileVersionLogs(data) {
return request({
url: '/api/Extend/LqUserProfileVersion/logs',
method: 'GET',
data
})
}
/** 将 BASE_USER 还原为指定版本快照(POST body:versionId) */
export function restoreUserProfileVersion(data) {
return request({
url: '/api/Extend/LqUserProfileVersion/restore',
method: 'POST',
data
})
}
|