📄 smsserviceobject.java
字号:
package com.gctech.sms.vo;
public class SmsServiceObject {
private String ID;
private String feeType;
private String feeCode;
private int subType;
private byte msgFormat;
private int needReply;
public String getID() {
return ID;
}
public void setID(String ID) {
this.ID = ID;
}
public String getFeeType() {
return feeType;
}
public void setFeeType(String feeType) {
this.feeType = feeType;
}
public String getFeeCode() {
return feeCode;
}
public void setFeeCode(String feeCode) {
this.feeCode = feeCode;
}
public int getSubType() {
return subType;
}
public void setSubType(int subType) {
this.subType = subType;
}
public byte getMsgFormat() {
return msgFormat;
}
public void setMsgFormat(byte msgFormat) {
this.msgFormat = msgFormat;
}
public int getNeedReply() {
return needReply;
}
public void setNeedReply(int needReply) {
this.needReply = needReply;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -