DeviceToken.java 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package com.iot.scheduler.model; import lombok.Data; /** * IOT平台token */ @Data public class DeviceToken { //设备凭证类型 private String credentialsType; //设备凭证id private String credentialsId; //凭证值 private String credentialsValue; }