Class TodoListEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.kanban.todo_list.TodoListEntity
All Implemented Interfaces:
Serializable

@Entity public class TodoListEntity extends BaseEntity
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 Details

    • name

      private String name
      Name of the todo list
    • description

      private String description
      Description of the todo list
    • type

      private String type
      Type of todo list (CUSTOMER, PROJECT, etc.)
    • color

      private String color
      Color theme for the todo list display
    • order

      private int order
      Display order of the todo list in the Kanban board
    • tasks

      private List<TaskEntity> tasks
      Tasks associated with this todo list
    • projectUid

      private String projectUid
      Associated project UID for project-specific todo lists
    • moduleUid

      private String moduleUid
      Associated module UID for module-specific todo lists
  • Constructor Details

    • TodoListEntity

      public TodoListEntity()