WaterMarkContent.java 945 Bytes
package com.thinkgem.jeesite.modules.eci.entity;

/**
 * 水印配置
 */
public class WaterMarkContent {

    private static final long serialVersionUID = 1L;

    /**
     * 是
     * 水印类型:TEXT(文本),IMAGE(图片)
     */
    private String type;

    /**
     * 水印类型为文本时必填
     * 文字内容
     */
    private String content;

    /**
     * 水印类型为图片时必填
     * 图片水印。只支持png格式
     */
    private String imageBase64;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public String getImageBase64() {
        return imageBase64;
    }

    public void setImageBase64(String imageBase64) {
        this.imageBase64 = imageBase64;
    }
}