index.ts 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import request from '@/config/axios'
  2. /**
  3. * IoT 产品物模型
  4. */
  5. export interface ThinkModelData {
  6. id?: number // 物模型功能编号
  7. identifier?: string // 功能标识
  8. name?: string // 功能名称
  9. description?: string // 功能描述
  10. productId?: number // 产品编号
  11. productKey?: string // 产品标识
  12. dataType: string // 数据类型,与 dataSpecs 的 dataType 保持一致
  13. type: ProductFunctionTypeEnum // 功能类型
  14. property: ThinkModelProperty // 属性
  15. event?: ThinkModelEvent // 事件
  16. service?: ThinkModelService // 服务
  17. }
  18. /**
  19. * ThinkModelProperty 类型
  20. */
  21. export interface ThinkModelProperty {
  22. [key: string]: any
  23. }
  24. /**
  25. * ThinkModelEvent 类型
  26. */
  27. export interface ThinkModelEvent {
  28. [key: string]: any
  29. }
  30. /**
  31. * ThinkModelService 类型
  32. */
  33. export interface ThinkModelService {
  34. [key: string]: any
  35. }
  36. // IOT 产品功能(物模型)类型枚举类
  37. export enum ProductFunctionTypeEnum {
  38. PROPERTY = 1, // 属性
  39. SERVICE = 2, // 服务
  40. EVENT = 3 // 事件
  41. }
  42. // IOT 产品功能(物模型)访问模式枚举类
  43. export enum ProductFunctionAccessModeEnum {
  44. READ_WRITE = 'rw', // 读写
  45. READ_ONLY = 'r' // 只读
  46. }
  47. // IoT 产品物模型 API
  48. export const ThinkModelApi = {
  49. // 查询产品物模型分页
  50. getThinkModelPage: async (params: any) => {
  51. return await request.get({ url: `/iot/product-think-model/page`, params })
  52. },
  53. // 获得产品物模型
  54. getThinkModelListByProductId: async (params: any) => {
  55. return await request.get({
  56. url: `/iot/product-think-model/list-by-product-id`,
  57. params
  58. })
  59. },
  60. // 查询产品物模型详情
  61. getThinkModel: async (id: number) => {
  62. return await request.get({ url: `/iot/product-think-model/get?id=` + id })
  63. },
  64. // 新增产品物模型
  65. createThinkModel: async (data: ThinkModelData) => {
  66. return await request.post({ url: `/iot/product-think-model/create`, data })
  67. },
  68. // 修改产品物模型
  69. updateThinkModel: async (data: ThinkModelData) => {
  70. return await request.put({ url: `/iot/product-think-model/update`, data })
  71. },
  72. // 删除产品物模型
  73. deleteThinkModel: async (id: number) => {
  74. return await request.delete({ url: `/iot/product-think-model/delete?id=` + id })
  75. }
  76. }