www.pudn.com > java_delphi.rar > SendSMS.java
/*
* Created on 2006-1-8
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package javama;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class SendSMS
{
public String zhujiao; //手机信息中心号码
public String beijiao; //接收手机号码
public String smstxt; //短信内容
/**
* @return Returns the beijiao.
*/
public String getBeijiao()
{
return beijiao;
}
/**
* @param beijiao The beijiao to set.
*/
public void setBeijiao(String beijiao)
{
this.beijiao = beijiao;
}
/**
* @return Returns the smstxt.
*/
public String getSmstxt()
{
return smstxt;
}
/**
* @param smstxt The smstxt to set.
*/
public void setSmstxt(String smstxt)
{
this.smstxt = smstxt;
}
/**
* @return Returns the zhujiao.
*/
public String getZhujiao()
{
return zhujiao;
}
/**
* @param zhujiao The zhujiao to set.
*/
public void setZhujiao(String zhujiao)
{
this.zhujiao = zhujiao;
}
}