Sign in

李晓鹤 / iot-scheduler · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • iot-scheduler
  • ..
  • model
  • DeviceToken.java
  • 三环朝晖数据拉取上报
    33ce0055
    杨鸣坤 authored
    2026-01-22 17:53:58 +0800  
    Browse Files »
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;

}