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

com.tongna.adminstore.SendVCode Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
package com.tongna.adminstore;

import java.io.Serializable;

/**
 * 发送验证码
 * 
 * @author ada
 *
 */
public class SendVCode implements Serializable {

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

	/**
	 * 产品
	 */
	private String product;

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public String getProduct() {
		return product;
	}

	public void setProduct(String product) {
		this.product = product;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy