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

com.healthy.common.security.properties.ImageCodeProperties Maven / Gradle / Ivy

package com.healthy.common.security.properties;

/**
 * 图片验证码配置项
 */
public class ImageCodeProperties extends SmsCodeProperties {

    /**
     * 图片宽
     */
    private int width = 200;

    /**
     * 图片高
     */
    private int height = 50;

    public ImageCodeProperties() {
        setLength(4);
    }

    public int getWidth() {
        return width;
    }

    public void setWidth(int width) {
        this.width = width;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy