All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mizhousoft.boot.sms.model.SmsVerificationCode Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.mizhousoft.boot.sms.model;

/**
 * 短信验证码
 *
 * @version
 */
public class SmsVerificationCode
{
	// 主机
	private final String host;

	// 验证码
	private final String verificationCode;

	/**
	 * 构造函数
	 *
	 * @param host
	 * @param verificationCode
	 */
	public SmsVerificationCode(String host, String verificationCode)
	{
		super();
		this.host = host;
		this.verificationCode = verificationCode;
	}

	/**
	 * 获取host
	 * 
	 * @return
	 */
	public String getHost()
	{
		return host;
	}

	/**
	 * 获取verificationCode
	 * 
	 * @return
	 */
	public String getVerificationCode()
	{
		return verificationCode;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy