新增需求变更:

公会如果调整了个人收益,需要再用户的系统通知哪里发送一个消息,公会调整了你的 收益 为 XX,  您是否同意  拒绝(默认24小时,24小时内 没同意,默认拒绝)在这个期间  按照他原有的进行计算,同意了就按照公会给的进行计算
This commit is contained in:
2025-12-08 15:38:27 +08:00
parent 7484817c82
commit ec181d951f
4 changed files with 75 additions and 2 deletions

View File

@@ -242,4 +242,15 @@ class Guild extends BaseCom
return V($reslut['code'],$reslut['msg'], $reslut['data']);
}
/*
* 公会调整收益审核接口
*/
public function user_ratio_up_apply(){
$uid = $this->uid;
$apply_id = input('apply_id', 0);
$type = input('type', 0);
$reslut = model('Guild')->user_ratio_up_apply($uid, $apply_id, $type);
return V($reslut['code'],$reslut['msg'], $reslut['data']);
}
}