auditcpuserfailaction.java
来自「移动彩信管理平台」· Java 代码 · 共 51 行
JAVA
51 行
/**
*
*/
package com.my7g.zj.mobile.mms.web.action;
import com.my7g.zj.mobile.mms.business.IUserService;
import com.opensymphony.xwork2.ActionSupport;
/**
* 未通过 同时修改标志位
* @author liuhb
*
*/
public class AuditCpUserFailAction extends ActionSupport{
private IUserService userService = null;
private Integer userId;
private Integer groupId;
public Integer getGroupId() {
return groupId;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
}
public String execute(){
try {
userService.auditFailCpUser(userId);
} catch (Exception e) {
e.printStackTrace();
}
return SUCCESS;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?