123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- package com.fdkankan.common.message;
- public class BuildSceneMqMessage extends BaseMQMessage {
- private String unicode;
- private String path;
- private String prefix;
- private String imgsName;
- private String projectNum;
- private String isModel;
- private String userName;
- //不同的相机不同的方法
- private String cameraType;
- private String algorithm;
- private String fileId;
- private String cameraName;
- //0表示有4k图,1表示没有
- private String resolution;
- //判断调用V2还是V3版本的算法
- private String buildType = "V2";
- private String rebuild = "0";
- public String getUnicode() {
- return unicode;
- }
- public void setUnicode(String unicode) {
- this.unicode = unicode;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- public String getPrefix() {
- return prefix;
- }
- public void setPrefix(String prefix) {
- this.prefix = prefix;
- }
- public String getImgsName() {
- return imgsName;
- }
- public void setImgsName(String imgsName) {
- this.imgsName = imgsName;
- }
- public String getProjectNum() {
- return projectNum;
- }
- public void setProjectNum(String projectNum) {
- this.projectNum = projectNum;
- }
- public String getIsModel() {
- return isModel;
- }
- public void setIsModel(String isModel) {
- this.isModel = isModel;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getCameraType() {
- return cameraType;
- }
- public void setCameraType(String cameraType) {
- this.cameraType = cameraType;
- }
- public String getAlgorithm() {
- return algorithm;
- }
- public void setAlgorithm(String algorithm) {
- this.algorithm = algorithm;
- }
- public String getFileId() {
- return fileId;
- }
- public void setFileId(String fileId) {
- this.fileId = fileId;
- }
- public String getCameraName() {
- return cameraName;
- }
- public void setCameraName(String cameraName) {
- this.cameraName = cameraName;
- }
- public String getResolution() {
- return resolution;
- }
- public void setResolution(String resolution) {
- this.resolution = resolution;
- }
- public String getBuildType() {
- return buildType;
- }
- public void setBuildType(String buildType) {
- this.buildType = buildType;
- }
- public String getRebuild() {
- return rebuild;
- }
- public void setRebuild(String rebuild) {
- this.rebuild = rebuild;
- }
- }
|