DYL
2025-01-10 5ac72fbfc76d24974a620d0b0e17abd09138f43a
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
package com.zhitan.knowledgeBase.domain.entity;
 
import com.zhitan.common.core.domain.BaseEntity;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 知识库(KnowledgeBase)实体类
 *
 * @author makejava
 * @since 2025-01-10 14:57:10
 */
@Data
public class KnowledgeBase extends BaseEntity implements Serializable {
    private static final long serialVersionUID = -68391633692977272L;
    /**
     * id
     */
    private Long id;
    /**
     * 标题
     */
    private String title;
    /**
     * 能源类型(0:电;1:水;2:天然气;3:蒸汽)
     */
    private Integer type;
    /**
     * 内容
     */
    private String content;
    /**
     * 删除标志
     */
    private Boolean delFlag;
}