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
| package com.zhitan.knowledgeBase.domain.vo;
|
| import lombok.Data;
|
| /**
| * @Author DYL
| **/
| @Data
| public class KnowledgeBasePageVO {
|
| /**
| * id
| */
| private Long id;
| /**
| * 标题
| */
| private String title;
| /**
| * 能源类型(0:电;1:水;2:天然气;3:蒸汽)
| */
| private Integer type;
| /**
| * 能源类型描述
| */
| private String typeDesc;
| /**
| * 内容
| */
| private String content;
| /**
| * 创建时间
| */
| private String createTime;
| }
|
|