VideoFiveTeaching.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.miaxis.video.domain;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import com.miaxis.common.annotation.Excel;
  6. import com.miaxis.common.core.domain.BaseBusinessEntity;
  7. import io.swagger.annotations.ApiModel;
  8. import io.swagger.annotations.ApiModelProperty;
  9. import lombok.Data;
  10. /**
  11. * 精选500题教学视频对象 video_five_teaching
  12. *
  13. * @author miaxis
  14. * @date 2024-11-20
  15. */
  16. @Data
  17. @TableName("video_five_teaching")
  18. @ApiModel(value = "VideoFiveTeaching", description = "精选500题教学视频对象 video_five_teaching")
  19. public class VideoFiveTeaching extends BaseBusinessEntity {
  20. private static final long serialVersionUID = 1L;
  21. /** $column.columnComment */
  22. @TableId(value = "id")
  23. @ApiModelProperty(value = "$column.columnComment")
  24. private Long id;
  25. /** 视频名称 */
  26. @Excel(name = "视频名称")
  27. @TableField("video_name")
  28. @ApiModelProperty(value = "视频名称")
  29. private String videoName;
  30. /** 视频封面 */
  31. @Excel(name = "视频封面")
  32. @TableField("video_cover")
  33. @ApiModelProperty(value = "视频封面")
  34. private String videoCover;
  35. /** 视频地址 */
  36. @Excel(name = "视频地址")
  37. @TableField("video_url")
  38. @ApiModelProperty(value = "视频地址")
  39. private String videoUrl;
  40. /** 1:科目一 2:科目二 3:科目三 4:科目四 */
  41. @Excel(name = "1:科目一 2:科目二 3:科目三 4:科目四")
  42. @TableField("video_subject")
  43. @ApiModelProperty(value = "1:科目一 2:科目二 3:科目三 4:科目四")
  44. private Long videoSubject;
  45. /** 0未开启 1已开启 */
  46. @Excel(name = "0未开启 1已开启")
  47. @TableField("state")
  48. @ApiModelProperty(value = "0未开启 1已开启")
  49. private Long state;
  50. /** 0:竖 1:横 */
  51. @Excel(name = "0:竖 1:横")
  52. @TableField("horizontal")
  53. @ApiModelProperty(value = "0:竖 1:横")
  54. private Long horizontal;
  55. /** 排序 */
  56. @Excel(name = "排序")
  57. @TableField("video_order")
  58. @ApiModelProperty(value = "排序")
  59. private Long videoOrder;
  60. /** 观看模式 0:免费 1:试看20秒 2:会员 */
  61. @Excel(name = "观看模式")
  62. @TableField("permission")
  63. @ApiModelProperty(value = "观看模式 0:免费 1:试看 2:会员")
  64. private Integer permission;
  65. /** 试看秒数 单位秒 */
  66. @Excel(name = "试看秒数 单位秒")
  67. @TableField("try_look_second")
  68. @ApiModelProperty(value = "试看秒数 单位秒")
  69. private Integer tryLookSecond;
  70. }