WaterMarkContent.java
945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
}
}