文章实体类 用于 UNION 注入漏洞演示
| 10 | * 用于 UNION 注入漏洞演示 |
| 11 | */ |
| 12 | @Data |
| 13 | @NoArgsConstructor |
| 14 | @AllArgsConstructor |
| 15 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected