📄 sendactionform.java
字号:
package com.gctech.sms.voice.web;import org.apache.struts.action.*;import javax.servlet.http.*;public class SendActionForm extends ActionForm{ private String content; private String name; private String phone1; private String phone2; private String phone3; private String phone4; private String radiobutton; private Integer voiceId; public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone1() { return phone1; } public void setPhone1(String phone1) { this.phone1 = phone1; } public String getPhone2() { return phone2; } public void setPhone2(String phone2) { this.phone2 = phone2; } public String getPhone3() { return phone3; } public void setPhone3(String phone3) { this.phone3 = phone3; } public String getPhone4() { return phone4; } public void setPhone4(String phone4) { this.phone4 = phone4; } public String getRadiobutton() { return radiobutton; } public void setRadiobutton(String radiobutton) { this.radiobutton = radiobutton; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { } public Integer getVoiceId() { return voiceId; } public void setVoiceId(Integer voiceId) { this.voiceId = voiceId; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -