BroadcastDTO.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package com.welampiot.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. /**
  6. * ClassName: BroadcastDTO
  7. * Package: com.welampiot.dto
  8. * Description:
  9. *
  10. * @Author: zhj_Start
  11. * @Create: 2023/4/17 - 10:27
  12. * @Version: v1.0
  13. */
  14. @Data
  15. public class BroadcastDTO implements Serializable {
  16. /** 主键 **/
  17. private Integer id;
  18. /** 灯杆id **/
  19. private Integer lampPoleId;
  20. /** 设备地址 **/
  21. private String address;
  22. /** 设备创建时间 **/
  23. private String createTime;
  24. /** 设备在线状态 **/
  25. private Integer online;
  26. /** 设备名称 **/
  27. private String name;
  28. /** 设备音量值 **/
  29. private Integer vol;
  30. /** 当前播放素材id **/
  31. private Integer proId;
  32. /** 播放状态(0 停止,1 播放)**/
  33. private Integer isPlay;
  34. /** 策略id **/
  35. private Integer policyId;
  36. /** 世邦音柱设备密码 **/
  37. private String pwd;
  38. /** 世邦或者先科设备id **/
  39. private Integer devId;
  40. /** 设备类型(0 云之声,1 世邦,2 先科)**/
  41. private Integer type;
  42. /** IP地址 **/
  43. private String ipAddr;
  44. /** 当前播放的节目id **/
  45. private Integer itemId;
  46. /** 安装时间 **/
  47. private String installDate;
  48. /** 过期时间 **/
  49. private String expirationDate;
  50. /** 设别播放素材名 **/
  51. private String proName;
  52. private String time;
  53. private String lampPoleName;
  54. private Integer onlineState;
  55. private Integer sectionId;
  56. private List<Integer> sectionList;
  57. private static final long serialVersionUID = 1L;
  58. private String itemName;
  59. }