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

com.quhaodian.data.rest.domain.CodeVo Maven / Gradle / Ivy

The newest version!
package com.quhaodian.data.rest.domain;

/**
 * 
 * 
 * 验证码返回对象
 * 1为该手机号被注册过了
 * 0为可以使用
 * 
 * @author ada
 *
 */
public class CodeVo extends AbstractVo {

	/**
	 * 验证码
	 */
	private String vcode;

	public String getVcode() {
		return vcode;
	}

	public void setVcode(String vcode) {
		this.vcode = vcode;
	}

	@Override
	public String toString() {
		return "CodeVo [vcode=" + vcode + ", toString()=" + super.toString() + "]";
	}
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy