StreamPushExcelDto.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.genersoft.iot.vmp.vmanager.bean;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. public class StreamPushExcelDto {
  4. @ExcelProperty("名称")
  5. private String name;
  6. @ExcelProperty("应用名")
  7. private String app;
  8. @ExcelProperty("流ID")
  9. private String stream;
  10. @ExcelProperty("国标ID")
  11. private String gbId;
  12. @ExcelProperty("平台ID")
  13. private String platformId;
  14. @ExcelProperty("目录ID")
  15. private String catalogId;
  16. @ExcelProperty("在线状态")
  17. private boolean status;
  18. public String getName() {
  19. return name;
  20. }
  21. public void setName(String name) {
  22. this.name = name;
  23. }
  24. public String getApp() {
  25. return app;
  26. }
  27. public void setApp(String app) {
  28. this.app = app;
  29. }
  30. public String getStream() {
  31. return stream;
  32. }
  33. public void setStream(String stream) {
  34. this.stream = stream;
  35. }
  36. public String getGbId() {
  37. return gbId;
  38. }
  39. public void setGbId(String gbId) {
  40. this.gbId = gbId;
  41. }
  42. public String getPlatformId() {
  43. return platformId;
  44. }
  45. public void setPlatformId(String platformId) {
  46. this.platformId = platformId;
  47. }
  48. public String getCatalogId() {
  49. return catalogId;
  50. }
  51. public void setCatalogId(String catalogId) {
  52. this.catalogId = catalogId;
  53. }
  54. public boolean isStatus() {
  55. return status;
  56. }
  57. public boolean getStatus() {
  58. return status;
  59. }
  60. public void setStatus(boolean status) {
  61. this.status = status;
  62. }
  63. }