com.quhaodian.data.rest.domain.CodeVo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate_common Show documentation
Show all versions of hibernate_common Show documentation
discover_hibernate_common is a lib for hibernate
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() + "]";
}
}