BuildSceneMqMessage.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package com.fdkankan.common.message;
  2. public class BuildSceneMqMessage extends BaseMQMessage {
  3. private String unicode;
  4. private String path;
  5. private String prefix;
  6. private String imgsName;
  7. private String projectNum;
  8. private String isModel;
  9. private String userName;
  10. //不同的相机不同的方法
  11. private String cameraType;
  12. private String algorithm;
  13. private String fileId;
  14. private String cameraName;
  15. //0表示有4k图,1表示没有
  16. private String resolution;
  17. //判断调用V2还是V3版本的算法
  18. private String buildType = "V2";
  19. private String rebuild = "0";
  20. public String getUnicode() {
  21. return unicode;
  22. }
  23. public void setUnicode(String unicode) {
  24. this.unicode = unicode;
  25. }
  26. public String getPath() {
  27. return path;
  28. }
  29. public void setPath(String path) {
  30. this.path = path;
  31. }
  32. public String getPrefix() {
  33. return prefix;
  34. }
  35. public void setPrefix(String prefix) {
  36. this.prefix = prefix;
  37. }
  38. public String getImgsName() {
  39. return imgsName;
  40. }
  41. public void setImgsName(String imgsName) {
  42. this.imgsName = imgsName;
  43. }
  44. public String getProjectNum() {
  45. return projectNum;
  46. }
  47. public void setProjectNum(String projectNum) {
  48. this.projectNum = projectNum;
  49. }
  50. public String getIsModel() {
  51. return isModel;
  52. }
  53. public void setIsModel(String isModel) {
  54. this.isModel = isModel;
  55. }
  56. public String getUserName() {
  57. return userName;
  58. }
  59. public void setUserName(String userName) {
  60. this.userName = userName;
  61. }
  62. public String getCameraType() {
  63. return cameraType;
  64. }
  65. public void setCameraType(String cameraType) {
  66. this.cameraType = cameraType;
  67. }
  68. public String getAlgorithm() {
  69. return algorithm;
  70. }
  71. public void setAlgorithm(String algorithm) {
  72. this.algorithm = algorithm;
  73. }
  74. public String getFileId() {
  75. return fileId;
  76. }
  77. public void setFileId(String fileId) {
  78. this.fileId = fileId;
  79. }
  80. public String getCameraName() {
  81. return cameraName;
  82. }
  83. public void setCameraName(String cameraName) {
  84. this.cameraName = cameraName;
  85. }
  86. public String getResolution() {
  87. return resolution;
  88. }
  89. public void setResolution(String resolution) {
  90. this.resolution = resolution;
  91. }
  92. public String getBuildType() {
  93. return buildType;
  94. }
  95. public void setBuildType(String buildType) {
  96. this.buildType = buildType;
  97. }
  98. public String getRebuild() {
  99. return rebuild;
  100. }
  101. public void setRebuild(String rebuild) {
  102. this.rebuild = rebuild;
  103. }
  104. }