VideoGenres.java 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package top.lvzhiqiang.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.time.LocalDateTime;
  6. /**
  7. * 电影类别
  8. *
  9. * @author lvzhiqiang
  10. * 2022/4/4 15:28
  11. */
  12. @Data
  13. public class VideoGenres implements Serializable {
  14. /**
  15. * 主键
  16. */
  17. private Long id;
  18. /**
  19. * 名称
  20. */
  21. private String name;
  22. /**
  23. * 内部编码
  24. */
  25. private String code;
  26. /**
  27. * 排序
  28. */
  29. private Integer sort;
  30. /**
  31. * 删除标志{1:正常,2:已删除}
  32. */
  33. private Integer deleteFlag;
  34. /**
  35. * 创建时间
  36. */
  37. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  38. private LocalDateTime createTime;
  39. /**
  40. * 最后修改时间
  41. */
  42. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  43. private LocalDateTime modifyTime;
  44. private Integer count;
  45. }