MCPcopy Create free account
hub / github.com/bansh2eBreak/SpringVulnBoot-backend / Article

Class Article

src/main/java/icu/secnotes/pojo/Article.java:12–41  ·  view source on GitHub ↗

文章实体类 用于 UNION 注入漏洞演示

Source from the content-addressed store, hash-verified

10 * 用于 UNION 注入漏洞演示
11 */
12@Data
13@NoArgsConstructor
14@AllArgsConstructor
15public class Article {
16
17 /**
18 * 文章ID
19 */
20 private Integer id;
21
22 /**
23 * 文章标题
24 */
25 private String title;
26
27 /**
28 * 作者
29 */
30 private String author;
31
32 /**
33 * 文章内容
34 */
35 private String content;
36
37 /**
38 * 发布时间
39 */
40 private LocalDateTime createTime;
41}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected