| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import lombok.Data; |
| | | import org.ruoyi.common.mybatis.core.domain.BaseEntity; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | |
| | | */ |
| | | @Data |
| | | @TableName("knowledge_info") |
| | | public class KnowledgeInfo implements Serializable { |
| | | public class KnowledgeInfo extends BaseEntity { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | * 描述 |
| | | */ |
| | | private String description; |
| | | |
| | | |
| | | /** |
| | | * 创建者 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 知识分隔符 |