?? updatecppasswordaction.java
字號(hào):
/**
*
*/
package com.my7g.zj.mobile.mms.web.action;
import com.my7g.zj.mobile.mms.business.IUserService;
import com.opensymphony.xwork2.ActionSupport;
/**
* 重置cp密碼
*
* @author liuhb
*
*/
public class UpdateCpPasswordAction extends ActionSupport {
private Integer userId;
private IUserService userService = null;
private Integer groupId;
public Integer getGroupId() {
return groupId;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
}
public String execute() {
try {
userService.updateCpPassword(userId);
} catch (Exception e) {
e.printStackTrace();
return ERROR;
}
return SUCCESS;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -