package com.ruoyi.integration.iotda.constant;
|
|
public class IotConstant {
|
/**
|
* 华为云iot token
|
*/
|
public static final String IOT_TOKEN = "iot_token";
|
/**
|
* 模式
|
*/
|
public static final String PASSWORD = "password";
|
/**
|
* URL
|
*/
|
public static final String URL = "https://iotda.cn-north-4.myhuaweicloud.com";
|
/**
|
* 创建产品
|
*/
|
public static final String CREATE_PRODUCT = URL+"/v5/iot/{project_id}/products";
|
/**
|
* 创建产品
|
*/
|
public static final String DELETE_PRODUCT = URL+"/v5/iot/{project_id}/products/{product_id}";
|
|
}
|