back_recharge
wangyuan 2019-08-08 11:26:01 +08:00
parent ea1c8e921f
commit ce45828fe4
1 changed files with 8 additions and 0 deletions

View File

@ -1,10 +1,18 @@
package com.ljsd.jieling.logic.activity;
import com.ljsd.jieling.config.SGlobalActivity;
import com.ljsd.jieling.logic.dao.root.User;
public class BlessActivity extends AbstractActivity {
public BlessActivity(int id) {
super(id);
}
@Override
public void initActivity(User user) throws Exception {
ActivityLogic.getInstance().initOtherActivity(user, SGlobalActivity.getsGlobalActivityMap().get(id));
}
}