com.gitee.cliveyuan.tools.bean.CaptchaCodeResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-tools Show documentation
Show all versions of java-tools Show documentation
Some commonly used methods in java
package com.gitee.cliveyuan.tools.bean;
import lombok.Builder;
import lombok.Data;
import java.io.Serializable;
/**
* Created by Clive on 2020/02/17.
*/
@Data
@Builder
public class CaptchaCodeResult implements Serializable {
private String captchaContent;
private String verifyContent;
}