123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022 |
- [
- {
- "id": "16552595723210menci0001008000012f",
- "deviceId": "16552595723210menci0001008000012f",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001008",
- "secret": "rMAweEJrE7cxbQWa",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655415536032
- },
- "property": {
- "doorStatus": 0,
- "power": 65,
- "rssi": 106
- },
- "tag": {},
- "createAt": 1655259572321,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- }
- },
- {
- "id": "16552595685220menci00010070000127",
- "deviceId": "16552595685220menci00010070000127",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001007",
- "secret": "eN4PjDhH4yx4mrmi",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655415536130
- },
- "property": {
- "doorStatus": 1,
- "power": 34,
- "rssi": 64
- },
- "tag": {},
- "createAt": 1655259568522,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- }
- },
- {
- "id": "16552595656210menci0001006000012d",
- "deviceId": "16552595656210menci0001006000012d",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001006",
- "secret": "ePSkE7bzGMsR6rTs",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655415536135
- },
- "property": {
- "doorStatus": 1,
- "power": 33,
- "rssi": 40
- },
- "tag": {},
- "createAt": 1655259565621,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- }
- },
- {
- "id": "16552594933210linght001007000012f",
- "deviceId": "16552594933210linght001007000012f",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001007",
- "secret": "mkQiSDk4rF3EWKFM",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416465031
- },
- "property": {
- "brightness": 12,
- "powerstate": 0
- },
- "tag": {},
- "createAt": 1655259493321,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- },
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- }
- },
- {
- "id": "16552594898210linght0010060000129",
- "deviceId": "16552594898210linght0010060000129",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001006",
- "secret": "p72KAZyTA42zi8cJ",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416465035
- },
- "property": {
- "brightness": 86,
- "powerstate": 1
- },
- "tag": {},
- "createAt": 1655259489821,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- }
- },
- {
- "id": "16552594863210linght001005000012c",
- "deviceId": "16552594863210linght001005000012c",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001005",
- "secret": "xnKZZyPKj2rH6ee3",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416465133
- },
- "property": {
- "brightness": 16,
- "powerstate": 1
- },
- "tag": {},
- "createAt": 1655259486321,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- },
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- }
- },
- {
- "id": "16552594812210linght001004000012d",
- "deviceId": "16552594812210linght001004000012d",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001004",
- "secret": "PDkTxHPfw2H4WZjQ",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416465231
- },
- "property": {
- "brightness": 32,
- "powerstate": 0
- },
- "tag": {},
- "createAt": 1655259481221,
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- }
- },
- {
- "id": "16552594646210pulg0a0010160000122",
- "deviceId": "16552594646210pulg0a0010160000122",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001016",
- "secret": "3KdPNBKZEyDGaNYK",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652738672
- },
- "property": {
- "powerstate": 0,
- "rssi": 66
- },
- "tag": {},
- "group": {
- "g1": {
- "id": "g1",
- "name": "分组1"
- }
- },
- "createAt": 1655259464621
- },
- {
- "id": "16552594604220pulg0a0010150000127",
- "deviceId": "16552594604220pulg0a0010150000127",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001015",
- "secret": "TBwbHJdJBQCpGdHi",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652738676
- },
- "property": {
- "powerstate": 1,
- "rssi": 67
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259460422
- },
- {
- "id": "16552594572370pulg0a001014000012e",
- "deviceId": "16552594572370pulg0a001014000012e",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001014",
- "secret": "86pTYbQxxX3wd2FR",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652738773
- },
- "property": {
- "powerstate": 1,
- "rssi": 42
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259457237
- },
- {
- "id": "16552594542310pulg0a0010130000123",
- "deviceId": "16552594542310pulg0a0010130000123",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001013",
- "secret": "FtxYcTM5p6B5GyPk",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652738872
- },
- "property": {
- "powerstate": 1,
- "rssi": 45
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259454231
- },
- {
- "id": "16552594511210pulg0a001012000012c",
- "deviceId": "16552594511210pulg0a001012000012c",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001012",
- "secret": "5yHFHseBHDbCK3eZ",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652738972
- },
- "property": {
- "powerstate": 0,
- "rssi": 60
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259451121
- },
- {
- "id": "16552594475270pulg0a0010110000125",
- "deviceId": "16552594475270pulg0a0010110000125",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001011",
- "secret": "pGC4z4TrbjZhii2m",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652739072
- },
- "property": {
- "powerstate": 1,
- "rssi": 27
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259447528
- },
- {
- "id": "16552594444210pulg0a0010100000128",
- "deviceId": "16552594444210pulg0a0010100000128",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001010",
- "secret": "HMxT2rQ55bzeRNJx",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652739076
- },
- "property": {
- "powerstate": 0,
- "rssi": 117
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259444422
- },
- {
- "id": "16552594405220pulg0a0010090000124",
- "deviceId": "16552594405220pulg0a0010090000124",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001009",
- "secret": "Z6yMp6D6mHKMjFi7",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652739174
- },
- "property": {
- "powerstate": 1,
- "rssi": 20
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259440522
- },
- {
- "id": "16552594368340pulg0a0010080000126",
- "deviceId": "16552594368340pulg0a0010080000126",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001008",
- "secret": "Ek3ZjwPayCymDxhN",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652739272
- },
- "property": {
- "powerstate": 1,
- "rssi": 77
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259436834
- },
- {
- "id": "16552594320310pulg0a0010070000126",
- "deviceId": "16552594320310pulg0a0010070000126",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001007",
- "secret": "NnnHaibdHJXMxNbC",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655652739372
- },
- "property": {
- "powerstate": 1,
- "rssi": 75
- },
- "tag": {},
- "group": {
- "g2": {
- "id": "g2",
- "name": "组2"
- }
- },
- "createAt": 1655259432067
- },
- {
- "id": "16542484163750d60ee9025d8430e327",
- "deviceId": "16542484163750d60ee9025d8430e327",
- "productKey": "Eit3kmGJtxSHfCKT",
- "deviceName": "2475b491e72541f7ad60ee9025d8430e",
- "secret": "bWkiEmY6wKM8WQP5",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false
- },
- "property": {
- "flow": "333",
- "fee": "2121212"
- },
- "tag": {},
- "createAt": 1654248416391
- },
- {
- "id": "16538390924670pulg0a001006000012a",
- "deviceId": "16538390924670pulg0a001006000012a",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001006",
- "secret": "FFSdNXDRJbnE8fm2",
- "uid": "1",
- "subUid": [
- "04c6722f-9a6d-40f3-ac9b-cd791b4c8933"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933067
- },
- "property": {
- "powerstate": 1,
- "rssi": 53,
- "DeviceType": "222"
- },
- "tag": {
- "aligenie": {
- "id": "aligenie",
- "name": "天猫精灵",
- "value": "是"
- },
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "0cfd14fc6d1ec120fcd38885df09f33c"
- }
- },
- "createAt": 1653839092467
- },
- {
- "id": "16538390885690pulg0a0010050000126",
- "deviceId": "16538390885690pulg0a0010050000126",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001005",
- "secret": "CN8ZGpcAheAbsDn2",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933167
- },
- "property": {
- "powerstate": 0,
- "rssi": 117
- },
- "tag": {},
- "createAt": 1653839088569
- },
- {
- "id": "16538390853670pulg0a0010040000121",
- "deviceId": "16538390853670pulg0a0010040000121",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001004",
- "secret": "S4SDRKscRXAn43bc",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933267
- },
- "property": {
- "powerstate": 1,
- "rssi": 45
- },
- "tag": {},
- "createAt": 1653839085367,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538390820760pulg0a0010030000127",
- "deviceId": "16538390820760pulg0a0010030000127",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001003",
- "secret": "7N4S6eYzMCjA7YfK",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933367
- },
- "property": {
- "powerstate": 1,
- "rssi": 101
- },
- "tag": {},
- "createAt": 1653839082076
- },
- {
- "id": "16538390787670pulg0a0010020000124",
- "deviceId": "16538390787670pulg0a0010020000124",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001002",
- "secret": "Jm7ecfyXawiend8K",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933376
- },
- "property": {
- "powerstate": 1,
- "rssi": 70
- },
- "tag": {},
- "createAt": 1653839078767,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538390738670pulg0a0010010000125",
- "deviceId": "16538390738670pulg0a0010010000125",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "PULG0A001001",
- "secret": "rtsZbST3tiJHccbe",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839933474
- },
- "property": {
- "powerstate": 1,
- "rssi": 118
- },
- "tag": {},
- "createAt": 1653839073867,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538390097670switch0300100500143",
- "deviceId": "16538390097670switch0300100500143",
- "productKey": "eDhXKwEzwFybM5R7",
- "deviceName": "SWITCH03001005",
- "secret": "PXHwHXH4a8YJzZ3S",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839918667
- },
- "property": {
- "powerstate_1": 0,
- "powerstate_2": 0,
- "powerstate_3": 1,
- "rssi": 86
- },
- "tag": {},
- "createAt": 1653839009767,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538390048670switch0300100400141",
- "deviceId": "16538390048670switch0300100400141",
- "productKey": "eDhXKwEzwFybM5R7",
- "deviceName": "SWITCH03001004",
- "secret": "BQj5SZetsC3eGtfM",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839918676
- },
- "property": {
- "powerstate_1": 0,
- "powerstate_2": 0,
- "powerstate_3": 0,
- "rssi": 27
- },
- "tag": {},
- "createAt": 1653839004867,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538390008670switch0300100300145",
- "deviceId": "16538390008670switch0300100300145",
- "productKey": "eDhXKwEzwFybM5R7",
- "deviceName": "SWITCH03001003",
- "secret": "mbs4PsY4atEtzcA3",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839918771
- },
- "property": {
- "powerstate_1": 0,
- "powerstate_2": 0,
- "powerstate_3": 0,
- "rssi": 29
- },
- "tag": {},
- "createAt": 1653839000867,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538389971670switch0300100200140",
- "deviceId": "16538389971670switch0300100200140",
- "productKey": "eDhXKwEzwFybM5R7",
- "deviceName": "SWITCH03001002",
- "secret": "4nrNrjnFMSQZB562",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839918871
- },
- "property": {
- "powerstate_1": 1,
- "powerstate_2": 0,
- "powerstate_3": 0,
- "rssi": 12
- },
- "tag": {},
- "createAt": 1653838997167,
- "group": {
- "g3": {
- "id": "g3",
- "name": "组3"
- }
- }
- },
- {
- "id": "16538389915670switch030010010014c",
- "deviceId": "16538389915670switch030010010014c",
- "productKey": "eDhXKwEzwFybM5R7",
- "deviceName": "SWITCH03001001",
- "secret": "Js66kBbXRjXmcpMB",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839918967
- },
- "property": {
- "powerstate_1": 0,
- "powerstate_2": 1,
- "powerstate_3": 0,
- "rssi": 18
- },
- "tag": {},
- "createAt": 1653838991567
- },
- {
- "id": "16538383943670wenshidu01008000139",
- "deviceId": "16538383943670wenshidu01008000139",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01008",
- "secret": "pGxKYrNJC7rDhsr8",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416485331
- },
- "property": {
- "humidity": 93,
- "temperature": 330
- },
- "tag": {},
- "createAt": 1653838394367
- },
- {
- "id": "16538383910670wenshidu01007000136",
- "deviceId": "16538383910670wenshidu01007000136",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01007",
- "secret": "ZxDQeQ8jhMrfx8eE",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416485335
- },
- "property": {
- "humidity": 91,
- "temperature": -29
- },
- "tag": {},
- "createAt": 1653838391067
- },
- {
- "id": "16538383880670wenshidu0100600013b",
- "deviceId": "16538383880670wenshidu0100600013b",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01006",
- "secret": "fEbdXEayedpBx6wk",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416485433
- },
- "property": {
- "humidity": 95,
- "temperature": 394
- },
- "tag": {},
- "createAt": 1653838388067
- },
- {
- "id": "16538383850710wenshidu01005000134",
- "deviceId": "16538383850710wenshidu01005000134",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01005",
- "secret": "Crm28CTD6iw7hYw5",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416485531
- },
- "property": {
- "humidity": 23,
- "temperature": 425
- },
- "tag": {},
- "createAt": 1653838385071
- },
- {
- "id": "16538383810690wenshidu01004000132",
- "deviceId": "16538383810690wenshidu01004000132",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01004",
- "secret": "FkCQGREXYCmjzxaZ",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655416485631
- },
- "property": {
- "humidity": 96,
- "temperature": 263
- },
- "tag": {},
- "createAt": 1653838381074
- },
- {
- "id": "16537595658790linght0010030000128",
- "deviceId": "16537595658790linght0010030000128",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001003",
- "secret": "JwKxnDWGrRcP8xAJ",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839919567
- },
- "property": {
- "brightness": 9,
- "powerstate": 0
- },
- "tag": {},
- "createAt": 1653759565879
- },
- {
- "id": "16537595624750linght001002000012c",
- "deviceId": "16537595624750linght001002000012c",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001002",
- "secret": "xrX2mrkQwf3YYaWc",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839919576
- },
- "property": {
- "brightness": 83,
- "powerstate": 1
- },
- "tag": {},
- "createAt": 1653759562475
- },
- {
- "id": "16537595591780linght0010010000121",
- "deviceId": "16537595591780linght0010010000121",
- "productKey": "xpsYHExTKPFaQMS7",
- "deviceName": "LINGHT001001",
- "secret": "diRBkEREDt47MzWF",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839919673
- },
- "property": {
- "brightness": 81,
- "powerstate": 1
- },
- "tag": {},
- "createAt": 1653759559178
- },
- {
- "id": "16537595308820fan000100300000010d",
- "deviceId": "16537595308820fan000100300000010d",
- "productKey": "hdX3PCMcFrCYpesJ",
- "deviceName": "FAN0001003",
- "secret": "fR3R3i8BYDKWAiDj",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false
- },
- "property": {},
- "tag": {},
- "createAt": 1653759530882
- },
- {
- "id": "16537595248720fan0001002000000101",
- "deviceId": "16537595248720fan0001002000000101",
- "productKey": "hdX3PCMcFrCYpesJ",
- "deviceName": "FAN0001002",
- "secret": "t3NYS5p7ExYaWKx4",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false
- },
- "property": {},
- "tag": {},
- "createAt": 1653759524872
- },
- {
- "id": "16537595195720fan0001001000000108",
- "deviceId": "16537595195720fan0001001000000108",
- "productKey": "hdX3PCMcFrCYpesJ",
- "deviceName": "FAN0001001",
- "secret": "KSpeRjXRP8H7tcAn",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false
- },
- "property": {},
- "tag": {},
- "createAt": 1653759519572
- },
- {
- "id": "16537594784840wenshidu0100300013a",
- "deviceId": "16537594784840wenshidu0100300013a",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01003",
- "secret": "DSBbhJW7cGXRWeZA",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839926671
- },
- "property": {
- "humidity": 45,
- "temperature": 123
- },
- "tag": {},
- "createAt": 1653759478484
- },
- {
- "id": "16537594752710wenshidu0100200013d",
- "deviceId": "16537594752710wenshidu0100200013d",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01002",
- "secret": "5bm8pNYcdj7YPMXn",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839926777
- },
- "property": {
- "humidity": 6,
- "temperature": 28
- },
- "tag": {},
- "createAt": 1653759475271
- },
- {
- "id": "16537594707840wenshidu0100100013c",
- "deviceId": "16537594707840wenshidu0100100013c",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "WENSHIDU01001",
- "secret": "neSfPnhsjCsQiCQx",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653839927067
- },
- "property": {
- "humidity": 35,
- "temperature": 392
- },
- "tag": {},
- "createAt": 1653759470784
- },
- {
- "id": "16537591055800menci0001003000012e",
- "deviceId": "16537591055800menci0001003000012e",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001003",
- "secret": "2D2k8mmHbi2AMh8G",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653785231385
- },
- "property": {
- "doorStatus": 1,
- "power": 70,
- "rssi": 38
- },
- "tag": {},
- "createAt": 1653759105580
- },
- {
- "id": "16537590838150menci00010020000128",
- "deviceId": "16537590838150menci00010020000128",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001002",
- "secret": "AQHQJTQ2iXkncb3C",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653785231786
- },
- "property": {
- "doorStatus": 1,
- "power": 99,
- "rssi": 48
- },
- "tag": {},
- "createAt": 1653759083815
- },
- {
- "id": "16537590780810menci0001001000012b",
- "deviceId": "16537590780810menci0001001000012b",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "MENCI0001001",
- "secret": "PwYEKSARBJjD4y6B",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653785232184
- },
- "property": {
- "doorStatus": 1,
- "power": 67,
- "rssi": 54
- },
- "tag": {},
- "createAt": 1653759078092
- },
- {
- "id": "16534030209640test001230100000118",
- "deviceId": "16534030209640test001230100000118",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "TEST0012301",
- "secret": "C8YxCycFFeQDPKX4",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653730979070
- },
- "property": {
- "DeviceType": "",
- "powerstate": 1,
- "rssi": 15
- },
- "tag": {},
- "createAt": 1653403020971
- },
- {
- "id": "16514657683280abe125000010000011f",
- "deviceId": "16514657683280abe125000010000011f",
- "productKey": "AWcJnf7ymGSkaz5M",
- "deviceName": "ABE12500001",
- "model": "M1",
- "parentId": "16514626212240aabbccee01000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653380321483
- },
- "property": {
- "powerstate": "1",
- "power": "1",
- "rssi": "1",
- "switch": "3232",
- "current": "10000",
- "electricty": "10"
- },
- "tag": {},
- "createAt": 1651465768328
- },
- {
- "id": "16514627991620aabbccdd1000000014f",
- "deviceId": "16514627991620aabbccdd1000000014f",
- "productKey": "hbtgIA0SuVw9lxjB",
- "deviceName": "AA:BB:CC:DD:10",
- "model": "GW01",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653185932725,
- "offlineTime": 1653187754035
- },
- "property": {},
- "tag": {},
- "createAt": 1651462799162
- },
- {
- "id": "16514626218250abe124000010000011a",
- "deviceId": "16514626218250abe124000010000011a",
- "productKey": "6kYp6jszrDns2yh4",
- "deviceName": "ABE12400001",
- "model": "S1",
- "parentId": "16514626212240aabbccee01000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653380322090,
- "offlineTime": 1652593079579
- },
- "property": {
- "humidity": 14,
- "temperature": 447
- },
- "tag": {},
- "createAt": 1651462621825
- },
- {
- "id": "16514626216250abe1230000200000114",
- "deviceId": "16514626216250abe1230000200000114",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "ABE12300002",
- "model": "S1",
- "parentId": "16514626212240aabbccee01000000143",
- "uid": "15620886-b30d-439d-9e5f-13a094c1f1f9",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653380319984,
- "offlineTime": 1652593079484
- },
- "property": {
- "powerstate": 0,
- "rssi": 26
- },
- "tag": {},
- "createAt": 1651462621625
- },
- {
- "id": "16514626214280abe1230000100000116",
- "deviceId": "16514626214280abe1230000100000116",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "ABE12300001",
- "model": "S1",
- "parentId": "16514626212240aabbccee01000000143",
- "uid": "15620886-b30d-439d-9e5f-13a094c1f1f9",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653380317469,
- "offlineTime": 1652593079473
- },
- "property": {
- "powerstate": 1,
- "rssi": 48
- },
- "tag": {},
- "createAt": 1651462621428
- },
- {
- "id": "16514626212240aabbccee01000000143",
- "deviceId": "16514626212240aabbccee01000000143",
- "productKey": "N523nWsCiG3CAn6X",
- "deviceName": "AA:BB:CC:EE:01",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653380312358,
- "offlineTime": 1652593079381
- },
- "property": {
- "UnbindAndDelete": "1"
- },
- "tag": {},
- "createAt": 1651462621224
- },
- {
- "id": "16501898583770f4cce4feffbd1bec164",
- "deviceId": "16501898583770f4cce4feffbd1bec164",
- "productKey": "PN3EDmkBZDD8whDd",
- "deviceName": "F4CCE4FEFFBD1BEC",
- "model": "device",
- "parentId": "165017126122400cefafcfee61000012b",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655415536433,
- "offlineTime": 1652669743574
- },
- "property": {
- "DeviceType": "TY0203@_TZ1800_ho6i0zk9",
- "power": 12,
- "doorStatus": 1,
- "rssi": 42
- },
- "tag": {
- "aligenie": {
- "id": "aligenie",
- "name": "天猫精灵接入",
- "value": "是"
- }
- },
- "createAt": 1650189858377
- },
- {
- "id": "16501806313260000833feffac33bc16c",
- "deviceId": "16501806313260000833feffac33bc16c",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "000833FEFFAC33BC",
- "model": "device",
- "parentId": "165017126122400cefafcfee61000012b",
- "uid": "15620886-b30d-439d-9e5f-13a094c1f1f9",
- "subUid": [
- "04c6722f-9a6d-40f3-ac9b-cd791b4c8933"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1652602130873,
- "offlineTime": 1652669743479
- },
- "property": {
- "DeviceType": "S2100-5102@_TZ2000_muw96vx2ppq6zh2k",
- "powerstate": 1,
- "rssi": -32
- },
- "tag": {
- "aligenie": {
- "id": "aligenie",
- "name": "天猫精灵",
- "value": "是"
- },
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "0cfd14fc6d1ec120fcd38885df09f33c"
- }
- },
- "createAt": 1650180631326
- },
- {
- "id": "165017126122400cefafcfee61000012b",
- "deviceId": "165017126122400cefafcfee61000012b",
- "productKey": "N523nWsCiG3CAn6X",
- "deviceName": "0CEFAFCFEE61",
- "subUid": [
- "04c6722f-9a6d-40f3-ac9b-cd791b4c8933"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1652602115884,
- "offlineTime": 1652669743471
- },
- "property": {
- "DeviceType": "WIDORA-BIT5"
- },
- "tag": {
- "aligenie": {
- "id": "aligenie",
- "name": "天猫精灵",
- "value": "是"
- },
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "0cfd14fc6d1ec120fcd38885df09f33c"
- }
- },
- "createAt": 1650171261224
- },
- {
- "id": "164785263238900cefafcfeeab0000125",
- "deviceId": "164785263238900cefafcfeeab0000125",
- "productKey": "N523nWsCiG3CAn6X",
- "deviceName": "0CEFAFCFEEAB",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581924548,
- "offlineTime": 1655581807987
- },
- "property": {
- "DeviceType": "WIDORA-BIT5"
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647852632389
- },
- {
- "id": "16477632226720c2cc9f03008d1500166",
- "deviceId": "16477632226720c2cc9f03008d1500166",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "C2CC9F03008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925148,
- "offlineTime": 1655581808150
- },
- "property": {
- "DeviceType": "lumi.plug@LUMI",
- "powerstate": 0,
- "rssi": -77
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647763222672
- },
- {
- "id": "164776322227201472a803008d150016e",
- "deviceId": "164776322227201472a803008d150016e",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "1472A803008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925152,
- "offlineTime": 1655581808148
- },
- "property": {
- "DeviceType": "lumi.plug@LUMI",
- "powerstate": 1,
- "rssi": -77
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647763222272
- },
- {
- "id": "1647763221972019a89f03008d1500163",
- "deviceId": "1647763221972019a89f03008d1500163",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "19A89F03008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925157,
- "offlineTime": 1655581808053
- },
- "property": {
- "DeviceType": "lumi.plug@LUMI",
- "powerstate": 1,
- "rssi": -80
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647763221972
- },
- {
- "id": "16477632215720c11b1602008d1500160",
- "deviceId": "16477632215720c11b1602008d1500160",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "C11B1602008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925252,
- "offlineTime": 1655581808052
- },
- "property": {
- "DeviceType": "lumi.plug@LUMI",
- "powerstate": 1,
- "rssi": -78
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647763221572
- },
- {
- "id": "164776322117404acb9f03008d1500168",
- "deviceId": "164776322117404acb9f03008d1500168",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "4ACB9F03008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925255,
- "offlineTime": 1655581808049
- },
- "property": {
- "DeviceType": "lumi.plug@LUMI",
- "powerstate": 1,
- "rssi": -78
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647763221174
- },
- {
- "id": "1647690908735019dd9f03008d1500163",
- "deviceId": "1647690908735019dd9f03008d1500163",
- "productKey": "cGCrkK7Ex4FESAwe",
- "deviceName": "19DD9F03008D1500",
- "model": "device",
- "parentId": "164785263238900cefafcfeeab0000125",
- "subUid": [
- "629daa3de5a005209d182876"
- ],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1655581925247,
- "offlineTime": 1655581808009
- },
- "property": {
- "powerstate": 1,
- "DeviceType": "lumi.plug@LUMI",
- "rssi": -78
- },
- "tag": {
- "dueros": {
- "id": "dueros",
- "name": "小度",
- "value": "是"
- },
- "duerosOpenUid": {
- "id": "duerosOpenUid",
- "name": "小度OpenUid",
- "value": "b980663dfbcf35126bb5b85031c3413a"
- }
- },
- "group": {},
- "createAt": 1647690908735
- },
- {
- "id": "16465723457670abd123000020000011c",
- "deviceId": "16465723457670abd123000020000011c",
- "productKey": "hdX3PCMcFrCYpesJ",
- "deviceName": "ABD12300002",
- "model": "F01",
- "parentId": "16465226744430aabbccdd22000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653380311848,
- "offlineTime": 1653380472842
- },
- "property": {
- "windSpeed": "7",
- "powerSwitch": "1",
- "workMode": "5"
- },
- "tag": {},
- "createAt": 1646572345767
- },
- {
- "id": "16465723454670abd1230000100000117",
- "deviceId": "16465723454670abd1230000100000117",
- "productKey": "hdX3PCMcFrCYpesJ",
- "deviceName": "ABD12300001",
- "model": "F01",
- "parentId": "16465226744430aabbccdd22000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653380308883,
- "offlineTime": 1653380472498
- },
- "property": {
- "windSpeed": "68"
- },
- "tag": {},
- "createAt": 1646572345467
- },
- {
- "id": "16465723451670abc123000030000011a",
- "deviceId": "16465723451670abc123000030000011a",
- "productKey": "Rf4QSjbm65X45753",
- "deviceName": "ABC12300003",
- "model": "S01",
- "parentId": "16465226744430aabbccdd22000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653729780071,
- "offlineTime": 1653380472221
- },
- "property": {
- "powerstate": 0,
- "volt": 81
- },
- "tag": {},
- "createAt": 1646572345167
- },
- {
- "id": "16465723448670abc1230000200000115",
- "deviceId": "16465723448670abc1230000200000115",
- "productKey": "Rf4QSjbm65X45753",
- "deviceName": "ABC12300002",
- "model": "S01",
- "parentId": "16465226744430aabbccdd22000000143",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": true,
- "onlineTime": 1653729780174,
- "offlineTime": 1653380471930
- },
- "property": {
- "powerstate": 1,
- "volt": 69
- },
- "tag": {},
- "createAt": 1646572344867
- },
- {
- "id": "16465226744430aabbccdd22000000143",
- "deviceId": "16465226744430aabbccdd22000000143",
- "productKey": "hbtgIA0SuVw9lxjB",
- "deviceName": "AA:BB:CC:DD:22",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653380299997,
- "offlineTime": 1653380471302
- },
- "property": {},
- "tag": {},
- "createAt": 1646522674443
- },
- {
- "id": "168187356997901234567891230000120",
- "deviceId": "168187356997901234567891230000120",
- "productKey": "BRD3x4fkKxkaxXFt",
- "deviceName": "123456789123",
- "uid": "1",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653380299997,
- "offlineTime": 1653380471302
- },
- "property": {},
- "tag": {},
- "createAt": 1646522674443
- },
- {
- "id": "168191541600402017121609130000126",
- "deviceId": "168191541600402017121609130000126",
- "productKey": "PwMfpXmp4ZWkGahn",
- "deviceName": "201712160913",
- "uid": "1",
- "parentId": "168187356997901234567891230000120",
- "subUid": [],
- "locate":{
- "longitude": "104.090377",
- "latitude": "30.604218"
- },
- "state": {
- "online": false,
- "onlineTime": 1653380299997,
- "offlineTime": 1653380471302
- },
- "property": {},
- "tag": {},
- "createAt": 1646522674443
- },
- {
- "id": "16891445583920testpump0100000010f",
- "deviceId": "16891445583920testpump0100000010f",
- "productKey": "openiitapump01",
- "deviceName": "testpump01",
- "model": null,
- "secret": "8cB3W8NzjP3rFY6W",
- "parentId": "16891443313530testgateway0100013d",
- "uid": "1",
- "subUid": null,
- "locate": {
- "longitude": null,
- "latitude": null
- },
- "state": {
- "online": false,
- "onlineTime": 0,
- "offlineTime": 0
- },
- "property": null,
- "tag": null,
- "group": {},
- "createAt": 1689144558392
- },
- {
- "id": "16891443313530testgateway0100013d",
- "deviceId": "16891443313530testgateway0100013d",
- "productKey": "openiitagateway01",
- "deviceName": "testgateway01",
- "model": null,
- "secret": "bnw2Z6zNxxdBtm6N",
- "parentId": null,
- "uid": "1",
- "subUid": null,
- "locate": {
- "longitude": "113.865453",
- "latitude": "22.583686"
- },
- "state": {
- "online": false,
- "onlineTime": 0,
- "offlineTime": 0
- },
- "property": null,
- "tag": null,
- "group": {},
- "createAt": 1689144331356
- },
- {
- "id": "16895701241450testnbpump010000125",
- "deviceId": "16895701241450testnbpump010000125",
- "productKey": "openiitanbpump01",
- "deviceName": "testnbpump01",
- "model": null,
- "secret": "eY45WnZEWRryR2xt",
- "parentId": null,
- "uid": "1",
- "subUid": null,
- "locate": {
- "longitude": "113.865453",
- "latitude": "22.583686"
- },
- "state": {
- "online": false,
- "onlineTime": 0,
- "offlineTime": 0
- },
- "property": null,
- "tag": null,
- "group": {},
- "createAt": 1689570124148
- }
- ]
|