forked from whgojp/JavaSecLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXss.java
More file actions
39 lines (33 loc) · 766 Bytes
/
Xss.java
File metadata and controls
39 lines (33 loc) · 766 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
package top.whgojp.modules.xss.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
*
* @TableName xss
*/
@TableName(value ="xss")
@Data
@AllArgsConstructor
public class Xss implements Serializable {
/**
* 主键id
*/
@TableId
private Integer id;
/**
* 插入内容
*/
private String content;
private String ua;
/**
* 插入时间
*/
private String date;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}