Class FormEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.service.form.FormEntity
All Implemented Interfaces:
Serializable

@Entity public class FormEntity extends BaseEntity
Form entity for storing form schema generated by frontend low-code drag-and-drop Used to store form structure definition in JSON format Database Table: bytedesk_service_form Purpose: Stores form definitions and basic metadata
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
      Name or title of the form
    • description

      private String description
      Description of the form's purpose
    • type

      private String type
      Form type (TICKET, THREAD, FLOW, etc.)
    • status

      private String status
      Current status of the form (DRAFT, PUBLISHED, ARCHIVED, DISABLED)
    • schema

      private String schema
      Form structure definition stored as JSON format Contains the complete form schema generated by frontend low-code editor
    • formVersion

      private Integer formVersion
      表单 schema 业务版本号(用于表单结果快照),与 BaseEntity.version(乐观锁)不同
  • Constructor Details

    • FormEntity

      public FormEntity()