Class GoodsEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.core.goods.GoodsEntity
All Implemented Interfaces:
Serializable

@Entity public class GoodsEntity extends BaseEntity
商品信息演示 Goods entity for content categorization and organization Provides goodsging functionality for various system entities Database Table: bytedesk_core_goods Purpose: Stores goods definitions, colors, and organization settings
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
      Name of the goods
    • title

      private String title
      商品标题(优先用于展示;为空时可回退到 name)
    • image

      private String image
      商品图片
    • description

      private String description
      Description of the goods
    • price

      private Double price
      商品价格
    • url

      private String url
      商品链接
    • tagList

      private List<String> tagList
      商品标签列表
    • extra

      private String extra
      业务扩展字段(建议为JSON字符串)
    • quantity

      private Integer quantity
      商品数量(订单场景可选)
    • type

      private String type
      Type of goods (CUSTOMER, TICKET, ARTICLE, etc.)
  • Constructor Details

    • GoodsEntity

      public GoodsEntity()