123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- package com.genersoft.iot.vmp.vmanager.bean;
- import io.swagger.v3.oas.annotations.media.Schema;
- import org.springframework.web.multipart.MultipartFile;
- public class BodyAiAlarm {
- @Schema(description = "设备id")
- private String dev_id;
- @Schema(description = "通道id")
- private String channelId;
- @Schema(description = "算法类型")
- private String arithmetic;
- @Schema(description = "识别结果")
- private String reco_info;
- @Schema(description = "固件版本")
- private String firmware_version;
- @Schema(description = "时间戳")
- private String timestamp;
- @Schema(description = "电池电压")
- private String battery;
- @Schema(description = "信号值")
- private String signal;
- @Schema(description = "环境温度")
- private String temp_env;
- @Schema(description = "cpu温度")
- private String cpu_env;
- @Schema(description = "算法类型,等效 arithmetic")
- private String type;
- @Schema(description = "icharge")
- private String icharge;
- @Schema(description = "iload")
- private String iload;
- @Schema(description = "vcharge")
- private String vcharge;
- @Schema(description = "焦距,放大倍数")
- private String zoom_rate;
- @Schema(description = "设备ccid")
- private String ccid;
- @Schema(description = "upload")
- private MultipartFile upload;
- @Schema(description = "upload0")
- private MultipartFile upload0;
- @Schema(description = "upload1")
- private MultipartFile upload1;
- @Schema(description = "upload2")
- private MultipartFile upload2;
- @Schema(description = "upload3")
- private MultipartFile upload3;
- @Schema(description = "upload4")
- private MultipartFile upload4;
- @Schema(description = "upload5")
- private MultipartFile upload5;
- @Schema(description = "upload6")
- private MultipartFile upload6;
- @Schema(description = "upload7")
- private MultipartFile upload7;
- public String getDev_id() {
- return dev_id;
- }
- public void setDev_id(String dev_id) {
- this.dev_id = dev_id;
- }
- public String getChannelId() {
- return channelId;
- }
- public void setChannelId(String channelId) {
- this.channelId = channelId;
- }
- public String getArithmetic() {
- return arithmetic;
- }
- public void setArithmetic(String arithmetic) {
- this.arithmetic = arithmetic;
- }
- public String getReco_info() {
- return reco_info;
- }
- public void setReco_info(String reco_info) {
- this.reco_info = reco_info;
- }
- public String getFirmware_version() {
- return firmware_version;
- }
- public void setFirmware_version(String firmware_version) {
- this.firmware_version = firmware_version;
- }
- public String getTimestamp() {
- return timestamp;
- }
- public void setTimestamp(String timestamp) {
- this.timestamp = timestamp;
- }
- public String getBattery() {
- return battery;
- }
- public void setBattery(String battery) {
- this.battery = battery;
- }
- public String getSignal() {
- return signal;
- }
- public void setSignal(String signal) {
- this.signal = signal;
- }
- public String getTemp_env() {
- return temp_env;
- }
- public void setTemp_env(String temp_env) {
- this.temp_env = temp_env;
- }
- public String getCpu_env() {
- return cpu_env;
- }
- public void setCpu_env(String cpu_env) {
- this.cpu_env = cpu_env;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getIcharge() {
- return icharge;
- }
- public void setIcharge(String icharge) {
- this.icharge = icharge;
- }
- public String getIload() {
- return iload;
- }
- public void setIload(String iload) {
- this.iload = iload;
- }
- public String getVcharge() {
- return vcharge;
- }
- public void setVcharge(String vcharge) {
- this.vcharge = vcharge;
- }
- public String getZoom_rate() {
- return zoom_rate;
- }
- public void setZoom_rate(String zoom_rate) {
- this.zoom_rate = zoom_rate;
- }
- public String getCcid() {
- return ccid;
- }
- public void setCcid(String ccid) {
- this.ccid = ccid;
- }
- public MultipartFile getUpload() {
- return upload;
- }
- public void setUpload(MultipartFile upload) {
- this.upload = upload;
- }
- public MultipartFile getUpload0() {
- return upload0;
- }
- public void setUpload0(MultipartFile upload0) {
- this.upload0 = upload0;
- }
- public MultipartFile getUpload1() {
- return upload1;
- }
- public void setUpload1(MultipartFile upload1) {
- this.upload1 = upload1;
- }
- public MultipartFile getUpload2() {
- return upload2;
- }
- public void setUpload2(MultipartFile upload2) {
- this.upload2 = upload2;
- }
- public MultipartFile getUpload3() {
- return upload3;
- }
- public void setUpload3(MultipartFile upload3) {
- this.upload3 = upload3;
- }
- public MultipartFile getUpload4() {
- return upload4;
- }
- public void setUpload4(MultipartFile upload4) {
- this.upload4 = upload4;
- }
- public MultipartFile getUpload5() {
- return upload5;
- }
- public void setUpload5(MultipartFile upload5) {
- this.upload5 = upload5;
- }
- public MultipartFile getUpload6() {
- return upload6;
- }
- public void setUpload6(MultipartFile upload6) {
- this.upload6 = upload6;
- }
- public MultipartFile getUpload7() {
- return upload7;
- }
- public void setUpload7(MultipartFile upload7) {
- this.upload7 = upload7;
- }
- }
|