Class TaskEntity

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

@Entity public class TaskEntity extends BaseEntity
待办任务: 一个工单内可以关联多个任务,每个人都可以创建待办任务 可以单纯创建待办,也可以关联工单等创建待办任务 Task entity for content categorization and organization Provides taskging functionality for various system entities Database Table: bytedesk_core_task Purpose: Stores task definitions, colors, and organization settings
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
      Name of the task
    • description

      private String description
      Description of the task
    • type

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

      private String color
      Color theme for the task display
    • order

      private Integer order
      Display order within the list
    • taskListUid

      private String taskListUid
      Task list uid that this task belongs to (optional)
    • status

      private String status
      Status
    • priority

      private String priority
      Priority (LOW, MEDIUM, HIGH, URGENT)
    • images

      private List<String> images
      Task images (URLs)
    • commentCount

      private Integer commentCount
      Comment count for this task
    • likeCount

      private Integer likeCount
      Like count for this task
    • favoriteCount

      private Integer favoriteCount
      Favorite/collect count for this task
    • startAt

      private ZonedDateTime startAt
      Optional planned start time
    • dueAt

      private ZonedDateTime dueAt
      Optional due time
    • completedAt

      private ZonedDateTime completedAt
      Completion time
  • Constructor Details

    • TaskEntity

      public TaskEntity()