Commit 3cfc6a78 authored by zhengke's avatar zhengke

1

parent 2ccb891c
...@@ -596,6 +596,55 @@ export function getTeacherContributeConfig(data) { ...@@ -596,6 +596,55 @@ export function getTeacherContributeConfig(data) {
}); });
} }
/**
* 获取人头奖金配置分页列表
*/
export function GetBounsPlanPage(data) {
return request({
url: '/Bonus/GetBounsPlanPage',
method: 'post',
data
});
}
/**
* 新增修改人头奖金配置
*/
export function SetBounsPlan(data) {
return request({
url: '/Bonus/SetBounsPlan',
method: 'post',
data
});
}
/**
* 新增修改人头奖金配置
*/
export function RemoveBonusPlan(data) {
return request({
url: '/Bonus/RemoveBonusPlan',
method: 'post',
data
});
}
/**
* 获取人头奖金配置
*/
export function GetBonusPlan(data) {
return request({
url: '/Bonus/GetBonusPlan',
method: 'post',
data
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment