Ejemplo n.º 1
0
 public int register(
     String account,
     String pwd,
     String nickname,
     String school,
     String cls,
     int sex,
     int age,
     String name,
     String tel,
     int pro1,
     int pro2,
     int typ,
     String city,
     int grade) {
   return DFWDao.registerData(
       account, pwd, nickname, school, cls, sex, age, name, tel, pro1, pro2, typ, city, grade);
 }
Ejemplo n.º 2
0
 public void updateLoginFlag(long id, int flag) {
   DFWDao.updateLoginFlag(id, flag);
 }
Ejemplo n.º 3
0
 public int changePwd(String account, String pwd, String newPwd) {
   return DFWDao.changePwd(account, pwd, newPwd);
 }
Ejemplo n.º 4
0
 public List getMyRankList(int pid) {
   return DFWDao.getSaveDataList(pid);
 }
Ejemplo n.º 5
0
 public List getRankList(int pid) {
   return DFWDao.getRankList(pid);
 }
Ejemplo n.º 6
0
 public ArrayList updateScore(long id, int score, int level) {
   return DFWDao.updateScore(id, score, level);
 }
Ejemplo n.º 7
0
 public Map<String, Object> getSaveData(int userId) {
   return DFWDao.getSaveData(userId);
 }
Ejemplo n.º 8
0
 //  @Transactional(readOnly = true)
 public Map<String, Object> geLoginData(String account, String pwd) {
   return DFWDao.saveAndGetUserData(account, pwd);
 }