Package com.bytedesk.kanban.todo_list
Class TodoListEntity
java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.kanban.todo_list.TodoListEntity
- All Implemented Interfaces:
Serializable
Todo list entity for Kanban board management
Represents a column or list in a Kanban board for organizing tasks
Database Table: bytedesk_plugin_kanban_todo_list
Purpose: Stores todo list configurations, task organization, and board structure
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate String
Color theme for the todo list displayprivate String
Description of the todo listprivate String
Associated module UID for module-specific todo listsprivate String
Name of the todo listprivate int
Display order of the todo list in the Kanban boardprivate String
Associated project UID for project-specific todo listsprivate List<TaskEntity>
Tasks associated with this todo listprivate String
Type of todo list (CUSTOMER, PROJECT, etc.) -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.bytedesk.core.base.BaseEntity
getCreatedAtString, getUpdatedAtString
-
Field Details
-
name
Name of the todo list -
description
Description of the todo list -
type
Type of todo list (CUSTOMER, PROJECT, etc.) -
color
Color theme for the todo list display -
order
private int orderDisplay order of the todo list in the Kanban board -
tasks
Tasks associated with this todo list -
projectUid
Associated project UID for project-specific todo lists -
moduleUid
Associated module UID for module-specific todo lists
-
-
Constructor Details
-
TodoListEntity
public TodoListEntity()
-