mmsactiveprogramstepelement.java
来自「MM7彩信对接网关示例」· Java 代码 · 共 54 行
JAVA
54 行
/*
* Created on 2005-2-25
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.rainbow.mms.activeprogram;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class MMSActiveProgramStepElement {
private int apID;
private int stepNo;
private int elementID;
private String reponseText;
private int nextStepNo;
public final int getApID() {
return apID;
}
public final void setApID(int apID) {
this.apID = apID;
}
public final int getElementID() {
return elementID;
}
public final void setElementID(int elementID) {
this.elementID = elementID;
}
public final int getNextStepNo() {
return nextStepNo;
}
public final void setNextStepNo(int nextStepNo) {
this.nextStepNo = nextStepNo;
}
public final String getReponseText() {
return reponseText;
}
public final void setReponseText(String reponseText) {
this.reponseText = reponseText;
}
public final int getStepNo() {
return stepNo;
}
public final void setStepNo(int stepNo) {
this.stepNo = stepNo;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?