易经宝库gm

back_recharge
duhui 2022-01-06 18:14:26 +08:00
parent a7c2a5a71f
commit c03ae4a02f
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package com.ljsd.jieling.kefu;
import com.ljsd.jieling.logic.dao.root.User;
/**
* @Author hj
* @Date 2021/10/28 17:11:17
* @Description: sublay
* @Version 1.0
*/
public class Cmd_sublay extends GmRoleAbstract{
@Override
public boolean exec(String[] args) throws Exception {
int anInt = Integer.parseInt(args[0]);
User user = getUser();
user.getActivityManager().getSubRewardPoolInfo().setLay(anInt);
return true;
}
}