smsserviceobject.java

来自「采用JAVA开发」· Java 代码 · 共 48 行

JAVA
48
字号
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 + =
减小字号Ctrl + -
显示快捷键?