Beispiel #1
0
 /** 通过用户名模糊查询申请信息2 刘腾升 */
 public List selectName2(Users users) throws Exception {
   return applyDao.selectName2(users);
 }
Beispiel #2
0
 /** 通过用户ID得到授权记录 刘腾升 */
 public Apply selectID(Apply apply) throws Exception {
   return applyDao.selectID(apply);
 }
Beispiel #3
0
 /** 通过用户ID拒绝授权 刘腾升 */
 public void decline(Apply apply) throws Exception {
   applyDao.decline(apply);
 }
Beispiel #4
0
 /** 通过用户ID批准授权 刘腾升 */
 public void authorize(Apply apply) throws Exception {
   applyDao.authorize(apply);
 }