Class TaskEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.kanban.task.TaskEntity
All Implemented Interfaces:
Serializable

@Entity public class TaskEntity extends BaseEntity
Task entity for Kanban board task management Represents individual tasks within a Kanban board system Database Table: bytedesk_plugin_kanban_task Purpose: Stores task information, status, and organization within Kanban boards
See Also:
  • Field Details

    • name

      private String name
      Name or title of the task
    • description

      private String description
      Description of the task
    • type

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

      private String color
      Color theme for the task display
    • order

      private int order
      Display order of the task within its todo list
    • tagList

      private List<String> tagList
      Tags for task categorization and search
    • complete

      private boolean complete
      Whether the task has been completed
    • projectUid

      private String projectUid
      Associated project UID for project-specific tasks
    • moduleUid

      private String moduleUid
      Associated module UID for module-specific tasks
    • todoListUid

      private String todoListUid
      Associated todo list UID where this task belongs
  • Constructor Details

    • TaskEntity

      public TaskEntity()