device.pb.go 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: device.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type DeviceDockingRequest struct {
  20. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  21. DeviceType int32 `protobuf:"varint,2,opt,name=device_type,json=deviceType,proto3" json:"device_type"`
  22. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  23. XXX_unrecognized []byte `json:"-"`
  24. XXX_sizecache int32 `json:"-"`
  25. }
  26. func (m *DeviceDockingRequest) Reset() { *m = DeviceDockingRequest{} }
  27. func (m *DeviceDockingRequest) String() string { return proto.CompactTextString(m) }
  28. func (*DeviceDockingRequest) ProtoMessage() {}
  29. func (*DeviceDockingRequest) Descriptor() ([]byte, []int) {
  30. return fileDescriptor_870276a56ac00da5, []int{0}
  31. }
  32. func (m *DeviceDockingRequest) XXX_Unmarshal(b []byte) error {
  33. return xxx_messageInfo_DeviceDockingRequest.Unmarshal(m, b)
  34. }
  35. func (m *DeviceDockingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  36. return xxx_messageInfo_DeviceDockingRequest.Marshal(b, m, deterministic)
  37. }
  38. func (m *DeviceDockingRequest) XXX_Merge(src proto.Message) {
  39. xxx_messageInfo_DeviceDockingRequest.Merge(m, src)
  40. }
  41. func (m *DeviceDockingRequest) XXX_Size() int {
  42. return xxx_messageInfo_DeviceDockingRequest.Size(m)
  43. }
  44. func (m *DeviceDockingRequest) XXX_DiscardUnknown() {
  45. xxx_messageInfo_DeviceDockingRequest.DiscardUnknown(m)
  46. }
  47. var xxx_messageInfo_DeviceDockingRequest proto.InternalMessageInfo
  48. func (m *DeviceDockingRequest) GetUid() int64 {
  49. if m != nil {
  50. return m.Uid
  51. }
  52. return 0
  53. }
  54. func (m *DeviceDockingRequest) GetDeviceType() int32 {
  55. if m != nil {
  56. return m.DeviceType
  57. }
  58. return 0
  59. }
  60. type DeviceDockingReply struct {
  61. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  62. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  63. XXX_unrecognized []byte `json:"-"`
  64. XXX_sizecache int32 `json:"-"`
  65. }
  66. func (m *DeviceDockingReply) Reset() { *m = DeviceDockingReply{} }
  67. func (m *DeviceDockingReply) String() string { return proto.CompactTextString(m) }
  68. func (*DeviceDockingReply) ProtoMessage() {}
  69. func (*DeviceDockingReply) Descriptor() ([]byte, []int) {
  70. return fileDescriptor_870276a56ac00da5, []int{1}
  71. }
  72. func (m *DeviceDockingReply) XXX_Unmarshal(b []byte) error {
  73. return xxx_messageInfo_DeviceDockingReply.Unmarshal(m, b)
  74. }
  75. func (m *DeviceDockingReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  76. return xxx_messageInfo_DeviceDockingReply.Marshal(b, m, deterministic)
  77. }
  78. func (m *DeviceDockingReply) XXX_Merge(src proto.Message) {
  79. xxx_messageInfo_DeviceDockingReply.Merge(m, src)
  80. }
  81. func (m *DeviceDockingReply) XXX_Size() int {
  82. return xxx_messageInfo_DeviceDockingReply.Size(m)
  83. }
  84. func (m *DeviceDockingReply) XXX_DiscardUnknown() {
  85. xxx_messageInfo_DeviceDockingReply.DiscardUnknown(m)
  86. }
  87. var xxx_messageInfo_DeviceDockingReply proto.InternalMessageInfo
  88. func (m *DeviceDockingReply) GetId() int64 {
  89. if m != nil {
  90. return m.Id
  91. }
  92. return 0
  93. }
  94. type DeviceAddRequest struct {
  95. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  96. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  97. Sn string `protobuf:"bytes,3,opt,name=sn,proto3" json:"sn"`
  98. Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr"`
  99. Type int32 `protobuf:"varint,5,opt,name=type,proto3" json:"type"`
  100. Lon float64 `protobuf:"fixed64,6,opt,name=lon,proto3" json:"lon"`
  101. Lat float64 `protobuf:"fixed64,7,opt,name=lat,proto3" json:"lat"`
  102. XCoord float64 `protobuf:"fixed64,8,opt,name=x_coord,json=xCoord,proto3" json:"x_coord"`
  103. YCoord float64 `protobuf:"fixed64,9,opt,name=y_coord,json=yCoord,proto3" json:"y_coord"`
  104. ProviderId int64 `protobuf:"varint,10,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  105. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  106. XXX_unrecognized []byte `json:"-"`
  107. XXX_sizecache int32 `json:"-"`
  108. }
  109. func (m *DeviceAddRequest) Reset() { *m = DeviceAddRequest{} }
  110. func (m *DeviceAddRequest) String() string { return proto.CompactTextString(m) }
  111. func (*DeviceAddRequest) ProtoMessage() {}
  112. func (*DeviceAddRequest) Descriptor() ([]byte, []int) {
  113. return fileDescriptor_870276a56ac00da5, []int{2}
  114. }
  115. func (m *DeviceAddRequest) XXX_Unmarshal(b []byte) error {
  116. return xxx_messageInfo_DeviceAddRequest.Unmarshal(m, b)
  117. }
  118. func (m *DeviceAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  119. return xxx_messageInfo_DeviceAddRequest.Marshal(b, m, deterministic)
  120. }
  121. func (m *DeviceAddRequest) XXX_Merge(src proto.Message) {
  122. xxx_messageInfo_DeviceAddRequest.Merge(m, src)
  123. }
  124. func (m *DeviceAddRequest) XXX_Size() int {
  125. return xxx_messageInfo_DeviceAddRequest.Size(m)
  126. }
  127. func (m *DeviceAddRequest) XXX_DiscardUnknown() {
  128. xxx_messageInfo_DeviceAddRequest.DiscardUnknown(m)
  129. }
  130. var xxx_messageInfo_DeviceAddRequest proto.InternalMessageInfo
  131. func (m *DeviceAddRequest) GetProjectId() int64 {
  132. if m != nil {
  133. return m.ProjectId
  134. }
  135. return 0
  136. }
  137. func (m *DeviceAddRequest) GetName() string {
  138. if m != nil {
  139. return m.Name
  140. }
  141. return ""
  142. }
  143. func (m *DeviceAddRequest) GetSn() string {
  144. if m != nil {
  145. return m.Sn
  146. }
  147. return ""
  148. }
  149. func (m *DeviceAddRequest) GetAddr() string {
  150. if m != nil {
  151. return m.Addr
  152. }
  153. return ""
  154. }
  155. func (m *DeviceAddRequest) GetType() int32 {
  156. if m != nil {
  157. return m.Type
  158. }
  159. return 0
  160. }
  161. func (m *DeviceAddRequest) GetLon() float64 {
  162. if m != nil {
  163. return m.Lon
  164. }
  165. return 0
  166. }
  167. func (m *DeviceAddRequest) GetLat() float64 {
  168. if m != nil {
  169. return m.Lat
  170. }
  171. return 0
  172. }
  173. func (m *DeviceAddRequest) GetXCoord() float64 {
  174. if m != nil {
  175. return m.XCoord
  176. }
  177. return 0
  178. }
  179. func (m *DeviceAddRequest) GetYCoord() float64 {
  180. if m != nil {
  181. return m.YCoord
  182. }
  183. return 0
  184. }
  185. func (m *DeviceAddRequest) GetProviderId() int64 {
  186. if m != nil {
  187. return m.ProviderId
  188. }
  189. return 0
  190. }
  191. type DeviceAddReply struct {
  192. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  193. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  194. XXX_unrecognized []byte `json:"-"`
  195. XXX_sizecache int32 `json:"-"`
  196. }
  197. func (m *DeviceAddReply) Reset() { *m = DeviceAddReply{} }
  198. func (m *DeviceAddReply) String() string { return proto.CompactTextString(m) }
  199. func (*DeviceAddReply) ProtoMessage() {}
  200. func (*DeviceAddReply) Descriptor() ([]byte, []int) {
  201. return fileDescriptor_870276a56ac00da5, []int{3}
  202. }
  203. func (m *DeviceAddReply) XXX_Unmarshal(b []byte) error {
  204. return xxx_messageInfo_DeviceAddReply.Unmarshal(m, b)
  205. }
  206. func (m *DeviceAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  207. return xxx_messageInfo_DeviceAddReply.Marshal(b, m, deterministic)
  208. }
  209. func (m *DeviceAddReply) XXX_Merge(src proto.Message) {
  210. xxx_messageInfo_DeviceAddReply.Merge(m, src)
  211. }
  212. func (m *DeviceAddReply) XXX_Size() int {
  213. return xxx_messageInfo_DeviceAddReply.Size(m)
  214. }
  215. func (m *DeviceAddReply) XXX_DiscardUnknown() {
  216. xxx_messageInfo_DeviceAddReply.DiscardUnknown(m)
  217. }
  218. var xxx_messageInfo_DeviceAddReply proto.InternalMessageInfo
  219. func (m *DeviceAddReply) GetDeviceId() int64 {
  220. if m != nil {
  221. return m.DeviceId
  222. }
  223. return 0
  224. }
  225. type VedioAddRequest struct {
  226. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  227. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  228. ProviderId int64 `protobuf:"varint,3,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  229. ChannelCount int32 `protobuf:"varint,4,opt,name=channel_count,json=channelCount,proto3" json:"channel_count"`
  230. VedioType int32 `protobuf:"varint,5,opt,name=vedio_type,json=vedioType,proto3" json:"vedio_type"`
  231. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  232. XXX_unrecognized []byte `json:"-"`
  233. XXX_sizecache int32 `json:"-"`
  234. }
  235. func (m *VedioAddRequest) Reset() { *m = VedioAddRequest{} }
  236. func (m *VedioAddRequest) String() string { return proto.CompactTextString(m) }
  237. func (*VedioAddRequest) ProtoMessage() {}
  238. func (*VedioAddRequest) Descriptor() ([]byte, []int) {
  239. return fileDescriptor_870276a56ac00da5, []int{4}
  240. }
  241. func (m *VedioAddRequest) XXX_Unmarshal(b []byte) error {
  242. return xxx_messageInfo_VedioAddRequest.Unmarshal(m, b)
  243. }
  244. func (m *VedioAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  245. return xxx_messageInfo_VedioAddRequest.Marshal(b, m, deterministic)
  246. }
  247. func (m *VedioAddRequest) XXX_Merge(src proto.Message) {
  248. xxx_messageInfo_VedioAddRequest.Merge(m, src)
  249. }
  250. func (m *VedioAddRequest) XXX_Size() int {
  251. return xxx_messageInfo_VedioAddRequest.Size(m)
  252. }
  253. func (m *VedioAddRequest) XXX_DiscardUnknown() {
  254. xxx_messageInfo_VedioAddRequest.DiscardUnknown(m)
  255. }
  256. var xxx_messageInfo_VedioAddRequest proto.InternalMessageInfo
  257. func (m *VedioAddRequest) GetProjectId() int64 {
  258. if m != nil {
  259. return m.ProjectId
  260. }
  261. return 0
  262. }
  263. func (m *VedioAddRequest) GetName() string {
  264. if m != nil {
  265. return m.Name
  266. }
  267. return ""
  268. }
  269. func (m *VedioAddRequest) GetProviderId() int64 {
  270. if m != nil {
  271. return m.ProviderId
  272. }
  273. return 0
  274. }
  275. func (m *VedioAddRequest) GetChannelCount() int32 {
  276. if m != nil {
  277. return m.ChannelCount
  278. }
  279. return 0
  280. }
  281. func (m *VedioAddRequest) GetVedioType() int32 {
  282. if m != nil {
  283. return m.VedioType
  284. }
  285. return 0
  286. }
  287. type VedioAddReply struct {
  288. VedioId int64 `protobuf:"varint,5,opt,name=vedio_id,json=vedioId,proto3" json:"vedio_id"`
  289. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  290. XXX_unrecognized []byte `json:"-"`
  291. XXX_sizecache int32 `json:"-"`
  292. }
  293. func (m *VedioAddReply) Reset() { *m = VedioAddReply{} }
  294. func (m *VedioAddReply) String() string { return proto.CompactTextString(m) }
  295. func (*VedioAddReply) ProtoMessage() {}
  296. func (*VedioAddReply) Descriptor() ([]byte, []int) {
  297. return fileDescriptor_870276a56ac00da5, []int{5}
  298. }
  299. func (m *VedioAddReply) XXX_Unmarshal(b []byte) error {
  300. return xxx_messageInfo_VedioAddReply.Unmarshal(m, b)
  301. }
  302. func (m *VedioAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  303. return xxx_messageInfo_VedioAddReply.Marshal(b, m, deterministic)
  304. }
  305. func (m *VedioAddReply) XXX_Merge(src proto.Message) {
  306. xxx_messageInfo_VedioAddReply.Merge(m, src)
  307. }
  308. func (m *VedioAddReply) XXX_Size() int {
  309. return xxx_messageInfo_VedioAddReply.Size(m)
  310. }
  311. func (m *VedioAddReply) XXX_DiscardUnknown() {
  312. xxx_messageInfo_VedioAddReply.DiscardUnknown(m)
  313. }
  314. var xxx_messageInfo_VedioAddReply proto.InternalMessageInfo
  315. func (m *VedioAddReply) GetVedioId() int64 {
  316. if m != nil {
  317. return m.VedioId
  318. }
  319. return 0
  320. }
  321. type ChannelAddRequest struct {
  322. Sn string `protobuf:"bytes,1,opt,name=sn,proto3" json:"sn"`
  323. ChannelCount int32 `protobuf:"varint,2,opt,name=channel_count,json=channelCount,proto3" json:"channel_count"`
  324. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  325. XXX_unrecognized []byte `json:"-"`
  326. XXX_sizecache int32 `json:"-"`
  327. }
  328. func (m *ChannelAddRequest) Reset() { *m = ChannelAddRequest{} }
  329. func (m *ChannelAddRequest) String() string { return proto.CompactTextString(m) }
  330. func (*ChannelAddRequest) ProtoMessage() {}
  331. func (*ChannelAddRequest) Descriptor() ([]byte, []int) {
  332. return fileDescriptor_870276a56ac00da5, []int{6}
  333. }
  334. func (m *ChannelAddRequest) XXX_Unmarshal(b []byte) error {
  335. return xxx_messageInfo_ChannelAddRequest.Unmarshal(m, b)
  336. }
  337. func (m *ChannelAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  338. return xxx_messageInfo_ChannelAddRequest.Marshal(b, m, deterministic)
  339. }
  340. func (m *ChannelAddRequest) XXX_Merge(src proto.Message) {
  341. xxx_messageInfo_ChannelAddRequest.Merge(m, src)
  342. }
  343. func (m *ChannelAddRequest) XXX_Size() int {
  344. return xxx_messageInfo_ChannelAddRequest.Size(m)
  345. }
  346. func (m *ChannelAddRequest) XXX_DiscardUnknown() {
  347. xxx_messageInfo_ChannelAddRequest.DiscardUnknown(m)
  348. }
  349. var xxx_messageInfo_ChannelAddRequest proto.InternalMessageInfo
  350. func (m *ChannelAddRequest) GetSn() string {
  351. if m != nil {
  352. return m.Sn
  353. }
  354. return ""
  355. }
  356. func (m *ChannelAddRequest) GetChannelCount() int32 {
  357. if m != nil {
  358. return m.ChannelCount
  359. }
  360. return 0
  361. }
  362. type ChannelAddReply struct {
  363. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  364. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  365. XXX_unrecognized []byte `json:"-"`
  366. XXX_sizecache int32 `json:"-"`
  367. }
  368. func (m *ChannelAddReply) Reset() { *m = ChannelAddReply{} }
  369. func (m *ChannelAddReply) String() string { return proto.CompactTextString(m) }
  370. func (*ChannelAddReply) ProtoMessage() {}
  371. func (*ChannelAddReply) Descriptor() ([]byte, []int) {
  372. return fileDescriptor_870276a56ac00da5, []int{7}
  373. }
  374. func (m *ChannelAddReply) XXX_Unmarshal(b []byte) error {
  375. return xxx_messageInfo_ChannelAddReply.Unmarshal(m, b)
  376. }
  377. func (m *ChannelAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  378. return xxx_messageInfo_ChannelAddReply.Marshal(b, m, deterministic)
  379. }
  380. func (m *ChannelAddReply) XXX_Merge(src proto.Message) {
  381. xxx_messageInfo_ChannelAddReply.Merge(m, src)
  382. }
  383. func (m *ChannelAddReply) XXX_Size() int {
  384. return xxx_messageInfo_ChannelAddReply.Size(m)
  385. }
  386. func (m *ChannelAddReply) XXX_DiscardUnknown() {
  387. xxx_messageInfo_ChannelAddReply.DiscardUnknown(m)
  388. }
  389. var xxx_messageInfo_ChannelAddReply proto.InternalMessageInfo
  390. func (m *ChannelAddReply) GetProjectId() int64 {
  391. if m != nil {
  392. return m.ProjectId
  393. }
  394. return 0
  395. }
  396. type ChannelUpdateRequest struct {
  397. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  398. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  399. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  400. XXX_unrecognized []byte `json:"-"`
  401. XXX_sizecache int32 `json:"-"`
  402. }
  403. func (m *ChannelUpdateRequest) Reset() { *m = ChannelUpdateRequest{} }
  404. func (m *ChannelUpdateRequest) String() string { return proto.CompactTextString(m) }
  405. func (*ChannelUpdateRequest) ProtoMessage() {}
  406. func (*ChannelUpdateRequest) Descriptor() ([]byte, []int) {
  407. return fileDescriptor_870276a56ac00da5, []int{8}
  408. }
  409. func (m *ChannelUpdateRequest) XXX_Unmarshal(b []byte) error {
  410. return xxx_messageInfo_ChannelUpdateRequest.Unmarshal(m, b)
  411. }
  412. func (m *ChannelUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  413. return xxx_messageInfo_ChannelUpdateRequest.Marshal(b, m, deterministic)
  414. }
  415. func (m *ChannelUpdateRequest) XXX_Merge(src proto.Message) {
  416. xxx_messageInfo_ChannelUpdateRequest.Merge(m, src)
  417. }
  418. func (m *ChannelUpdateRequest) XXX_Size() int {
  419. return xxx_messageInfo_ChannelUpdateRequest.Size(m)
  420. }
  421. func (m *ChannelUpdateRequest) XXX_DiscardUnknown() {
  422. xxx_messageInfo_ChannelUpdateRequest.DiscardUnknown(m)
  423. }
  424. var xxx_messageInfo_ChannelUpdateRequest proto.InternalMessageInfo
  425. func (m *ChannelUpdateRequest) GetId() int64 {
  426. if m != nil {
  427. return m.Id
  428. }
  429. return 0
  430. }
  431. func (m *ChannelUpdateRequest) GetName() string {
  432. if m != nil {
  433. return m.Name
  434. }
  435. return ""
  436. }
  437. type ChannelUpdateReply struct {
  438. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  439. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  440. XXX_unrecognized []byte `json:"-"`
  441. XXX_sizecache int32 `json:"-"`
  442. }
  443. func (m *ChannelUpdateReply) Reset() { *m = ChannelUpdateReply{} }
  444. func (m *ChannelUpdateReply) String() string { return proto.CompactTextString(m) }
  445. func (*ChannelUpdateReply) ProtoMessage() {}
  446. func (*ChannelUpdateReply) Descriptor() ([]byte, []int) {
  447. return fileDescriptor_870276a56ac00da5, []int{9}
  448. }
  449. func (m *ChannelUpdateReply) XXX_Unmarshal(b []byte) error {
  450. return xxx_messageInfo_ChannelUpdateReply.Unmarshal(m, b)
  451. }
  452. func (m *ChannelUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  453. return xxx_messageInfo_ChannelUpdateReply.Marshal(b, m, deterministic)
  454. }
  455. func (m *ChannelUpdateReply) XXX_Merge(src proto.Message) {
  456. xxx_messageInfo_ChannelUpdateReply.Merge(m, src)
  457. }
  458. func (m *ChannelUpdateReply) XXX_Size() int {
  459. return xxx_messageInfo_ChannelUpdateReply.Size(m)
  460. }
  461. func (m *ChannelUpdateReply) XXX_DiscardUnknown() {
  462. xxx_messageInfo_ChannelUpdateReply.DiscardUnknown(m)
  463. }
  464. var xxx_messageInfo_ChannelUpdateReply proto.InternalMessageInfo
  465. func (m *ChannelUpdateReply) GetProjectId() int64 {
  466. if m != nil {
  467. return m.ProjectId
  468. }
  469. return 0
  470. }
  471. type ChannelListRequest struct {
  472. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  473. Sn string `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn"`
  474. ChannelNo string `protobuf:"bytes,3,opt,name=channel_no,json=channelNo,proto3" json:"channel_no"`
  475. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  476. XXX_unrecognized []byte `json:"-"`
  477. XXX_sizecache int32 `json:"-"`
  478. }
  479. func (m *ChannelListRequest) Reset() { *m = ChannelListRequest{} }
  480. func (m *ChannelListRequest) String() string { return proto.CompactTextString(m) }
  481. func (*ChannelListRequest) ProtoMessage() {}
  482. func (*ChannelListRequest) Descriptor() ([]byte, []int) {
  483. return fileDescriptor_870276a56ac00da5, []int{10}
  484. }
  485. func (m *ChannelListRequest) XXX_Unmarshal(b []byte) error {
  486. return xxx_messageInfo_ChannelListRequest.Unmarshal(m, b)
  487. }
  488. func (m *ChannelListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  489. return xxx_messageInfo_ChannelListRequest.Marshal(b, m, deterministic)
  490. }
  491. func (m *ChannelListRequest) XXX_Merge(src proto.Message) {
  492. xxx_messageInfo_ChannelListRequest.Merge(m, src)
  493. }
  494. func (m *ChannelListRequest) XXX_Size() int {
  495. return xxx_messageInfo_ChannelListRequest.Size(m)
  496. }
  497. func (m *ChannelListRequest) XXX_DiscardUnknown() {
  498. xxx_messageInfo_ChannelListRequest.DiscardUnknown(m)
  499. }
  500. var xxx_messageInfo_ChannelListRequest proto.InternalMessageInfo
  501. func (m *ChannelListRequest) GetPage() int32 {
  502. if m != nil {
  503. return m.Page
  504. }
  505. return 0
  506. }
  507. func (m *ChannelListRequest) GetSn() string {
  508. if m != nil {
  509. return m.Sn
  510. }
  511. return ""
  512. }
  513. func (m *ChannelListRequest) GetChannelNo() string {
  514. if m != nil {
  515. return m.ChannelNo
  516. }
  517. return ""
  518. }
  519. type ChannelItem struct {
  520. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
  521. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  522. ChannelNo string `protobuf:"bytes,3,opt,name=channel_no,json=channelNo,proto3" json:"channel_no"`
  523. State int32 `protobuf:"varint,4,opt,name=state,proto3" json:"state"`
  524. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  525. XXX_unrecognized []byte `json:"-"`
  526. XXX_sizecache int32 `json:"-"`
  527. }
  528. func (m *ChannelItem) Reset() { *m = ChannelItem{} }
  529. func (m *ChannelItem) String() string { return proto.CompactTextString(m) }
  530. func (*ChannelItem) ProtoMessage() {}
  531. func (*ChannelItem) Descriptor() ([]byte, []int) {
  532. return fileDescriptor_870276a56ac00da5, []int{11}
  533. }
  534. func (m *ChannelItem) XXX_Unmarshal(b []byte) error {
  535. return xxx_messageInfo_ChannelItem.Unmarshal(m, b)
  536. }
  537. func (m *ChannelItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  538. return xxx_messageInfo_ChannelItem.Marshal(b, m, deterministic)
  539. }
  540. func (m *ChannelItem) XXX_Merge(src proto.Message) {
  541. xxx_messageInfo_ChannelItem.Merge(m, src)
  542. }
  543. func (m *ChannelItem) XXX_Size() int {
  544. return xxx_messageInfo_ChannelItem.Size(m)
  545. }
  546. func (m *ChannelItem) XXX_DiscardUnknown() {
  547. xxx_messageInfo_ChannelItem.DiscardUnknown(m)
  548. }
  549. var xxx_messageInfo_ChannelItem proto.InternalMessageInfo
  550. func (m *ChannelItem) GetName() string {
  551. if m != nil {
  552. return m.Name
  553. }
  554. return ""
  555. }
  556. func (m *ChannelItem) GetId() int64 {
  557. if m != nil {
  558. return m.Id
  559. }
  560. return 0
  561. }
  562. func (m *ChannelItem) GetChannelNo() string {
  563. if m != nil {
  564. return m.ChannelNo
  565. }
  566. return ""
  567. }
  568. func (m *ChannelItem) GetState() int32 {
  569. if m != nil {
  570. return m.State
  571. }
  572. return 0
  573. }
  574. type ChannelListReply struct {
  575. List []*ChannelItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  576. Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  577. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  578. PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  579. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  580. XXX_unrecognized []byte `json:"-"`
  581. XXX_sizecache int32 `json:"-"`
  582. }
  583. func (m *ChannelListReply) Reset() { *m = ChannelListReply{} }
  584. func (m *ChannelListReply) String() string { return proto.CompactTextString(m) }
  585. func (*ChannelListReply) ProtoMessage() {}
  586. func (*ChannelListReply) Descriptor() ([]byte, []int) {
  587. return fileDescriptor_870276a56ac00da5, []int{12}
  588. }
  589. func (m *ChannelListReply) XXX_Unmarshal(b []byte) error {
  590. return xxx_messageInfo_ChannelListReply.Unmarshal(m, b)
  591. }
  592. func (m *ChannelListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  593. return xxx_messageInfo_ChannelListReply.Marshal(b, m, deterministic)
  594. }
  595. func (m *ChannelListReply) XXX_Merge(src proto.Message) {
  596. xxx_messageInfo_ChannelListReply.Merge(m, src)
  597. }
  598. func (m *ChannelListReply) XXX_Size() int {
  599. return xxx_messageInfo_ChannelListReply.Size(m)
  600. }
  601. func (m *ChannelListReply) XXX_DiscardUnknown() {
  602. xxx_messageInfo_ChannelListReply.DiscardUnknown(m)
  603. }
  604. var xxx_messageInfo_ChannelListReply proto.InternalMessageInfo
  605. func (m *ChannelListReply) GetList() []*ChannelItem {
  606. if m != nil {
  607. return m.List
  608. }
  609. return nil
  610. }
  611. func (m *ChannelListReply) GetPage() int32 {
  612. if m != nil {
  613. return m.Page
  614. }
  615. return 0
  616. }
  617. func (m *ChannelListReply) GetTotal() int64 {
  618. if m != nil {
  619. return m.Total
  620. }
  621. return 0
  622. }
  623. func (m *ChannelListReply) GetPageSize() int32 {
  624. if m != nil {
  625. return m.PageSize
  626. }
  627. return 0
  628. }
  629. type DeviceDelRequest struct {
  630. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  631. Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason"`
  632. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  633. XXX_unrecognized []byte `json:"-"`
  634. XXX_sizecache int32 `json:"-"`
  635. }
  636. func (m *DeviceDelRequest) Reset() { *m = DeviceDelRequest{} }
  637. func (m *DeviceDelRequest) String() string { return proto.CompactTextString(m) }
  638. func (*DeviceDelRequest) ProtoMessage() {}
  639. func (*DeviceDelRequest) Descriptor() ([]byte, []int) {
  640. return fileDescriptor_870276a56ac00da5, []int{13}
  641. }
  642. func (m *DeviceDelRequest) XXX_Unmarshal(b []byte) error {
  643. return xxx_messageInfo_DeviceDelRequest.Unmarshal(m, b)
  644. }
  645. func (m *DeviceDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  646. return xxx_messageInfo_DeviceDelRequest.Marshal(b, m, deterministic)
  647. }
  648. func (m *DeviceDelRequest) XXX_Merge(src proto.Message) {
  649. xxx_messageInfo_DeviceDelRequest.Merge(m, src)
  650. }
  651. func (m *DeviceDelRequest) XXX_Size() int {
  652. return xxx_messageInfo_DeviceDelRequest.Size(m)
  653. }
  654. func (m *DeviceDelRequest) XXX_DiscardUnknown() {
  655. xxx_messageInfo_DeviceDelRequest.DiscardUnknown(m)
  656. }
  657. var xxx_messageInfo_DeviceDelRequest proto.InternalMessageInfo
  658. func (m *DeviceDelRequest) GetDeviceId() int64 {
  659. if m != nil {
  660. return m.DeviceId
  661. }
  662. return 0
  663. }
  664. func (m *DeviceDelRequest) GetReason() string {
  665. if m != nil {
  666. return m.Reason
  667. }
  668. return ""
  669. }
  670. type DeviceDelReply struct {
  671. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  672. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  673. XXX_unrecognized []byte `json:"-"`
  674. XXX_sizecache int32 `json:"-"`
  675. }
  676. func (m *DeviceDelReply) Reset() { *m = DeviceDelReply{} }
  677. func (m *DeviceDelReply) String() string { return proto.CompactTextString(m) }
  678. func (*DeviceDelReply) ProtoMessage() {}
  679. func (*DeviceDelReply) Descriptor() ([]byte, []int) {
  680. return fileDescriptor_870276a56ac00da5, []int{14}
  681. }
  682. func (m *DeviceDelReply) XXX_Unmarshal(b []byte) error {
  683. return xxx_messageInfo_DeviceDelReply.Unmarshal(m, b)
  684. }
  685. func (m *DeviceDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  686. return xxx_messageInfo_DeviceDelReply.Marshal(b, m, deterministic)
  687. }
  688. func (m *DeviceDelReply) XXX_Merge(src proto.Message) {
  689. xxx_messageInfo_DeviceDelReply.Merge(m, src)
  690. }
  691. func (m *DeviceDelReply) XXX_Size() int {
  692. return xxx_messageInfo_DeviceDelReply.Size(m)
  693. }
  694. func (m *DeviceDelReply) XXX_DiscardUnknown() {
  695. xxx_messageInfo_DeviceDelReply.DiscardUnknown(m)
  696. }
  697. var xxx_messageInfo_DeviceDelReply proto.InternalMessageInfo
  698. func (m *DeviceDelReply) GetProjectId() int64 {
  699. if m != nil {
  700. return m.ProjectId
  701. }
  702. return 0
  703. }
  704. type DeviceTypeListRequest struct {
  705. ProviderId int64 `protobuf:"varint,1,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  706. StatusFilters []int32 `protobuf:"varint,2,rep,packed,name=status_filters,json=statusFilters,proto3" json:"status_filters"`
  707. IncludeVedio bool `protobuf:"varint,3,opt,name=include_vedio,json=includeVedio,proto3" json:"include_vedio"`
  708. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  709. XXX_unrecognized []byte `json:"-"`
  710. XXX_sizecache int32 `json:"-"`
  711. }
  712. func (m *DeviceTypeListRequest) Reset() { *m = DeviceTypeListRequest{} }
  713. func (m *DeviceTypeListRequest) String() string { return proto.CompactTextString(m) }
  714. func (*DeviceTypeListRequest) ProtoMessage() {}
  715. func (*DeviceTypeListRequest) Descriptor() ([]byte, []int) {
  716. return fileDescriptor_870276a56ac00da5, []int{15}
  717. }
  718. func (m *DeviceTypeListRequest) XXX_Unmarshal(b []byte) error {
  719. return xxx_messageInfo_DeviceTypeListRequest.Unmarshal(m, b)
  720. }
  721. func (m *DeviceTypeListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  722. return xxx_messageInfo_DeviceTypeListRequest.Marshal(b, m, deterministic)
  723. }
  724. func (m *DeviceTypeListRequest) XXX_Merge(src proto.Message) {
  725. xxx_messageInfo_DeviceTypeListRequest.Merge(m, src)
  726. }
  727. func (m *DeviceTypeListRequest) XXX_Size() int {
  728. return xxx_messageInfo_DeviceTypeListRequest.Size(m)
  729. }
  730. func (m *DeviceTypeListRequest) XXX_DiscardUnknown() {
  731. xxx_messageInfo_DeviceTypeListRequest.DiscardUnknown(m)
  732. }
  733. var xxx_messageInfo_DeviceTypeListRequest proto.InternalMessageInfo
  734. func (m *DeviceTypeListRequest) GetProviderId() int64 {
  735. if m != nil {
  736. return m.ProviderId
  737. }
  738. return 0
  739. }
  740. func (m *DeviceTypeListRequest) GetStatusFilters() []int32 {
  741. if m != nil {
  742. return m.StatusFilters
  743. }
  744. return nil
  745. }
  746. func (m *DeviceTypeListRequest) GetIncludeVedio() bool {
  747. if m != nil {
  748. return m.IncludeVedio
  749. }
  750. return false
  751. }
  752. type DeviceTypeItem struct {
  753. TypeCode int32 `protobuf:"varint,1,opt,name=type_code,json=typeCode,proto3" json:"type_code"`
  754. TypeName string `protobuf:"bytes,2,opt,name=type_name,json=typeName,proto3" json:"type_name"`
  755. CreatedTime string `protobuf:"bytes,3,opt,name=created_time,json=createdTime,proto3" json:"created_time"`
  756. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
  757. Feedback string `protobuf:"bytes,5,opt,name=feedback,proto3" json:"feedback"`
  758. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  759. XXX_unrecognized []byte `json:"-"`
  760. XXX_sizecache int32 `json:"-"`
  761. }
  762. func (m *DeviceTypeItem) Reset() { *m = DeviceTypeItem{} }
  763. func (m *DeviceTypeItem) String() string { return proto.CompactTextString(m) }
  764. func (*DeviceTypeItem) ProtoMessage() {}
  765. func (*DeviceTypeItem) Descriptor() ([]byte, []int) {
  766. return fileDescriptor_870276a56ac00da5, []int{16}
  767. }
  768. func (m *DeviceTypeItem) XXX_Unmarshal(b []byte) error {
  769. return xxx_messageInfo_DeviceTypeItem.Unmarshal(m, b)
  770. }
  771. func (m *DeviceTypeItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  772. return xxx_messageInfo_DeviceTypeItem.Marshal(b, m, deterministic)
  773. }
  774. func (m *DeviceTypeItem) XXX_Merge(src proto.Message) {
  775. xxx_messageInfo_DeviceTypeItem.Merge(m, src)
  776. }
  777. func (m *DeviceTypeItem) XXX_Size() int {
  778. return xxx_messageInfo_DeviceTypeItem.Size(m)
  779. }
  780. func (m *DeviceTypeItem) XXX_DiscardUnknown() {
  781. xxx_messageInfo_DeviceTypeItem.DiscardUnknown(m)
  782. }
  783. var xxx_messageInfo_DeviceTypeItem proto.InternalMessageInfo
  784. func (m *DeviceTypeItem) GetTypeCode() int32 {
  785. if m != nil {
  786. return m.TypeCode
  787. }
  788. return 0
  789. }
  790. func (m *DeviceTypeItem) GetTypeName() string {
  791. if m != nil {
  792. return m.TypeName
  793. }
  794. return ""
  795. }
  796. func (m *DeviceTypeItem) GetCreatedTime() string {
  797. if m != nil {
  798. return m.CreatedTime
  799. }
  800. return ""
  801. }
  802. func (m *DeviceTypeItem) GetStatus() int32 {
  803. if m != nil {
  804. return m.Status
  805. }
  806. return 0
  807. }
  808. func (m *DeviceTypeItem) GetFeedback() string {
  809. if m != nil {
  810. return m.Feedback
  811. }
  812. return ""
  813. }
  814. type DeviceTypeListReply struct {
  815. List []*DeviceTypeItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  816. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  817. XXX_unrecognized []byte `json:"-"`
  818. XXX_sizecache int32 `json:"-"`
  819. }
  820. func (m *DeviceTypeListReply) Reset() { *m = DeviceTypeListReply{} }
  821. func (m *DeviceTypeListReply) String() string { return proto.CompactTextString(m) }
  822. func (*DeviceTypeListReply) ProtoMessage() {}
  823. func (*DeviceTypeListReply) Descriptor() ([]byte, []int) {
  824. return fileDescriptor_870276a56ac00da5, []int{17}
  825. }
  826. func (m *DeviceTypeListReply) XXX_Unmarshal(b []byte) error {
  827. return xxx_messageInfo_DeviceTypeListReply.Unmarshal(m, b)
  828. }
  829. func (m *DeviceTypeListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  830. return xxx_messageInfo_DeviceTypeListReply.Marshal(b, m, deterministic)
  831. }
  832. func (m *DeviceTypeListReply) XXX_Merge(src proto.Message) {
  833. xxx_messageInfo_DeviceTypeListReply.Merge(m, src)
  834. }
  835. func (m *DeviceTypeListReply) XXX_Size() int {
  836. return xxx_messageInfo_DeviceTypeListReply.Size(m)
  837. }
  838. func (m *DeviceTypeListReply) XXX_DiscardUnknown() {
  839. xxx_messageInfo_DeviceTypeListReply.DiscardUnknown(m)
  840. }
  841. var xxx_messageInfo_DeviceTypeListReply proto.InternalMessageInfo
  842. func (m *DeviceTypeListReply) GetList() []*DeviceTypeItem {
  843. if m != nil {
  844. return m.List
  845. }
  846. return nil
  847. }
  848. type DeviceListRequest struct {
  849. ProviderId int64 `protobuf:"varint,1,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  850. // 状态过滤 审核状态 0 待审核 1 项目通过 2 项目未通过
  851. StatusFilters []int32 `protobuf:"varint,2,rep,packed,name=status_filters,json=statusFilters,proto3" json:"status_filters"`
  852. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  853. ProjectId int64 `protobuf:"varint,4,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  854. Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter"`
  855. TypeCode int32 `protobuf:"varint,6,opt,name=type_code,json=typeCode,proto3" json:"type_code"`
  856. IsAll bool `protobuf:"varint,7,opt,name=is_all,json=isAll,proto3" json:"is_all"`
  857. CanDel bool `protobuf:"varint,8,opt,name=can_del,json=canDel,proto3" json:"can_del"`
  858. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  859. XXX_unrecognized []byte `json:"-"`
  860. XXX_sizecache int32 `json:"-"`
  861. }
  862. func (m *DeviceListRequest) Reset() { *m = DeviceListRequest{} }
  863. func (m *DeviceListRequest) String() string { return proto.CompactTextString(m) }
  864. func (*DeviceListRequest) ProtoMessage() {}
  865. func (*DeviceListRequest) Descriptor() ([]byte, []int) {
  866. return fileDescriptor_870276a56ac00da5, []int{18}
  867. }
  868. func (m *DeviceListRequest) XXX_Unmarshal(b []byte) error {
  869. return xxx_messageInfo_DeviceListRequest.Unmarshal(m, b)
  870. }
  871. func (m *DeviceListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  872. return xxx_messageInfo_DeviceListRequest.Marshal(b, m, deterministic)
  873. }
  874. func (m *DeviceListRequest) XXX_Merge(src proto.Message) {
  875. xxx_messageInfo_DeviceListRequest.Merge(m, src)
  876. }
  877. func (m *DeviceListRequest) XXX_Size() int {
  878. return xxx_messageInfo_DeviceListRequest.Size(m)
  879. }
  880. func (m *DeviceListRequest) XXX_DiscardUnknown() {
  881. xxx_messageInfo_DeviceListRequest.DiscardUnknown(m)
  882. }
  883. var xxx_messageInfo_DeviceListRequest proto.InternalMessageInfo
  884. func (m *DeviceListRequest) GetProviderId() int64 {
  885. if m != nil {
  886. return m.ProviderId
  887. }
  888. return 0
  889. }
  890. func (m *DeviceListRequest) GetStatusFilters() []int32 {
  891. if m != nil {
  892. return m.StatusFilters
  893. }
  894. return nil
  895. }
  896. func (m *DeviceListRequest) GetPage() int32 {
  897. if m != nil {
  898. return m.Page
  899. }
  900. return 0
  901. }
  902. func (m *DeviceListRequest) GetProjectId() int64 {
  903. if m != nil {
  904. return m.ProjectId
  905. }
  906. return 0
  907. }
  908. func (m *DeviceListRequest) GetFilter() string {
  909. if m != nil {
  910. return m.Filter
  911. }
  912. return ""
  913. }
  914. func (m *DeviceListRequest) GetTypeCode() int32 {
  915. if m != nil {
  916. return m.TypeCode
  917. }
  918. return 0
  919. }
  920. func (m *DeviceListRequest) GetIsAll() bool {
  921. if m != nil {
  922. return m.IsAll
  923. }
  924. return false
  925. }
  926. func (m *DeviceListRequest) GetCanDel() bool {
  927. if m != nil {
  928. return m.CanDel
  929. }
  930. return false
  931. }
  932. type DeviceItem struct {
  933. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  934. SocialCode string `protobuf:"bytes,2,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  935. // 设备类型编码
  936. TypeCode int32 `protobuf:"varint,3,opt,name=type_code,json=typeCode,proto3" json:"type_code"`
  937. TypeName string `protobuf:"bytes,4,opt,name=type_name,json=typeName,proto3" json:"type_name"`
  938. // 申请时间
  939. ApplyTime string `protobuf:"bytes,5,opt,name=apply_time,json=applyTime,proto3" json:"apply_time"`
  940. // 审批时间
  941. ApproveTime string `protobuf:"bytes,6,opt,name=approve_time,json=approveTime,proto3" json:"approve_time"`
  942. // 0 待审核 1 项目通过 2 项目不通过
  943. Status int32 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  944. ProjectName string `protobuf:"bytes,8,opt,name=project_name,json=projectName,proto3" json:"project_name"`
  945. // 安检备案号
  946. SafetyRecordNo string `protobuf:"bytes,9,opt,name=safety_record_no,json=safetyRecordNo,proto3" json:"safety_record_no"`
  947. // 0 离线 1 在线
  948. State int32 `protobuf:"varint,10,opt,name=state,proto3" json:"state"`
  949. Sn string `protobuf:"bytes,11,opt,name=sn,proto3" json:"sn"`
  950. Key string `protobuf:"bytes,12,opt,name=key,proto3" json:"key"`
  951. ProviderName string `protobuf:"bytes,13,opt,name=provider_name,json=providerName,proto3" json:"provider_name"`
  952. Name string `protobuf:"bytes,14,opt,name=name,proto3" json:"name"`
  953. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  954. XXX_unrecognized []byte `json:"-"`
  955. XXX_sizecache int32 `json:"-"`
  956. }
  957. func (m *DeviceItem) Reset() { *m = DeviceItem{} }
  958. func (m *DeviceItem) String() string { return proto.CompactTextString(m) }
  959. func (*DeviceItem) ProtoMessage() {}
  960. func (*DeviceItem) Descriptor() ([]byte, []int) {
  961. return fileDescriptor_870276a56ac00da5, []int{19}
  962. }
  963. func (m *DeviceItem) XXX_Unmarshal(b []byte) error {
  964. return xxx_messageInfo_DeviceItem.Unmarshal(m, b)
  965. }
  966. func (m *DeviceItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  967. return xxx_messageInfo_DeviceItem.Marshal(b, m, deterministic)
  968. }
  969. func (m *DeviceItem) XXX_Merge(src proto.Message) {
  970. xxx_messageInfo_DeviceItem.Merge(m, src)
  971. }
  972. func (m *DeviceItem) XXX_Size() int {
  973. return xxx_messageInfo_DeviceItem.Size(m)
  974. }
  975. func (m *DeviceItem) XXX_DiscardUnknown() {
  976. xxx_messageInfo_DeviceItem.DiscardUnknown(m)
  977. }
  978. var xxx_messageInfo_DeviceItem proto.InternalMessageInfo
  979. func (m *DeviceItem) GetId() int64 {
  980. if m != nil {
  981. return m.Id
  982. }
  983. return 0
  984. }
  985. func (m *DeviceItem) GetSocialCode() string {
  986. if m != nil {
  987. return m.SocialCode
  988. }
  989. return ""
  990. }
  991. func (m *DeviceItem) GetTypeCode() int32 {
  992. if m != nil {
  993. return m.TypeCode
  994. }
  995. return 0
  996. }
  997. func (m *DeviceItem) GetTypeName() string {
  998. if m != nil {
  999. return m.TypeName
  1000. }
  1001. return ""
  1002. }
  1003. func (m *DeviceItem) GetApplyTime() string {
  1004. if m != nil {
  1005. return m.ApplyTime
  1006. }
  1007. return ""
  1008. }
  1009. func (m *DeviceItem) GetApproveTime() string {
  1010. if m != nil {
  1011. return m.ApproveTime
  1012. }
  1013. return ""
  1014. }
  1015. func (m *DeviceItem) GetStatus() int32 {
  1016. if m != nil {
  1017. return m.Status
  1018. }
  1019. return 0
  1020. }
  1021. func (m *DeviceItem) GetProjectName() string {
  1022. if m != nil {
  1023. return m.ProjectName
  1024. }
  1025. return ""
  1026. }
  1027. func (m *DeviceItem) GetSafetyRecordNo() string {
  1028. if m != nil {
  1029. return m.SafetyRecordNo
  1030. }
  1031. return ""
  1032. }
  1033. func (m *DeviceItem) GetState() int32 {
  1034. if m != nil {
  1035. return m.State
  1036. }
  1037. return 0
  1038. }
  1039. func (m *DeviceItem) GetSn() string {
  1040. if m != nil {
  1041. return m.Sn
  1042. }
  1043. return ""
  1044. }
  1045. func (m *DeviceItem) GetKey() string {
  1046. if m != nil {
  1047. return m.Key
  1048. }
  1049. return ""
  1050. }
  1051. func (m *DeviceItem) GetProviderName() string {
  1052. if m != nil {
  1053. return m.ProviderName
  1054. }
  1055. return ""
  1056. }
  1057. func (m *DeviceItem) GetName() string {
  1058. if m != nil {
  1059. return m.Name
  1060. }
  1061. return ""
  1062. }
  1063. type DeviceListReply struct {
  1064. List []*DeviceItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1065. Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  1066. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  1067. PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1068. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1069. XXX_unrecognized []byte `json:"-"`
  1070. XXX_sizecache int32 `json:"-"`
  1071. }
  1072. func (m *DeviceListReply) Reset() { *m = DeviceListReply{} }
  1073. func (m *DeviceListReply) String() string { return proto.CompactTextString(m) }
  1074. func (*DeviceListReply) ProtoMessage() {}
  1075. func (*DeviceListReply) Descriptor() ([]byte, []int) {
  1076. return fileDescriptor_870276a56ac00da5, []int{20}
  1077. }
  1078. func (m *DeviceListReply) XXX_Unmarshal(b []byte) error {
  1079. return xxx_messageInfo_DeviceListReply.Unmarshal(m, b)
  1080. }
  1081. func (m *DeviceListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1082. return xxx_messageInfo_DeviceListReply.Marshal(b, m, deterministic)
  1083. }
  1084. func (m *DeviceListReply) XXX_Merge(src proto.Message) {
  1085. xxx_messageInfo_DeviceListReply.Merge(m, src)
  1086. }
  1087. func (m *DeviceListReply) XXX_Size() int {
  1088. return xxx_messageInfo_DeviceListReply.Size(m)
  1089. }
  1090. func (m *DeviceListReply) XXX_DiscardUnknown() {
  1091. xxx_messageInfo_DeviceListReply.DiscardUnknown(m)
  1092. }
  1093. var xxx_messageInfo_DeviceListReply proto.InternalMessageInfo
  1094. func (m *DeviceListReply) GetList() []*DeviceItem {
  1095. if m != nil {
  1096. return m.List
  1097. }
  1098. return nil
  1099. }
  1100. func (m *DeviceListReply) GetPage() int32 {
  1101. if m != nil {
  1102. return m.Page
  1103. }
  1104. return 0
  1105. }
  1106. func (m *DeviceListReply) GetTotal() int64 {
  1107. if m != nil {
  1108. return m.Total
  1109. }
  1110. return 0
  1111. }
  1112. func (m *DeviceListReply) GetPageSize() int32 {
  1113. if m != nil {
  1114. return m.PageSize
  1115. }
  1116. return 0
  1117. }
  1118. type VedioListRequest struct {
  1119. ProviderId int64 `protobuf:"varint,1,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  1120. // 状态过滤 审核状态 0 待审核 1 项目通过 2 项目未通过
  1121. StatusFilters []int32 `protobuf:"varint,2,rep,packed,name=status_filters,json=statusFilters,proto3" json:"status_filters"`
  1122. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  1123. ProjectId int64 `protobuf:"varint,4,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1124. Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter"`
  1125. IsAll bool `protobuf:"varint,7,opt,name=is_all,json=isAll,proto3" json:"is_all"`
  1126. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1127. XXX_unrecognized []byte `json:"-"`
  1128. XXX_sizecache int32 `json:"-"`
  1129. }
  1130. func (m *VedioListRequest) Reset() { *m = VedioListRequest{} }
  1131. func (m *VedioListRequest) String() string { return proto.CompactTextString(m) }
  1132. func (*VedioListRequest) ProtoMessage() {}
  1133. func (*VedioListRequest) Descriptor() ([]byte, []int) {
  1134. return fileDescriptor_870276a56ac00da5, []int{21}
  1135. }
  1136. func (m *VedioListRequest) XXX_Unmarshal(b []byte) error {
  1137. return xxx_messageInfo_VedioListRequest.Unmarshal(m, b)
  1138. }
  1139. func (m *VedioListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1140. return xxx_messageInfo_VedioListRequest.Marshal(b, m, deterministic)
  1141. }
  1142. func (m *VedioListRequest) XXX_Merge(src proto.Message) {
  1143. xxx_messageInfo_VedioListRequest.Merge(m, src)
  1144. }
  1145. func (m *VedioListRequest) XXX_Size() int {
  1146. return xxx_messageInfo_VedioListRequest.Size(m)
  1147. }
  1148. func (m *VedioListRequest) XXX_DiscardUnknown() {
  1149. xxx_messageInfo_VedioListRequest.DiscardUnknown(m)
  1150. }
  1151. var xxx_messageInfo_VedioListRequest proto.InternalMessageInfo
  1152. func (m *VedioListRequest) GetProviderId() int64 {
  1153. if m != nil {
  1154. return m.ProviderId
  1155. }
  1156. return 0
  1157. }
  1158. func (m *VedioListRequest) GetStatusFilters() []int32 {
  1159. if m != nil {
  1160. return m.StatusFilters
  1161. }
  1162. return nil
  1163. }
  1164. func (m *VedioListRequest) GetPage() int32 {
  1165. if m != nil {
  1166. return m.Page
  1167. }
  1168. return 0
  1169. }
  1170. func (m *VedioListRequest) GetProjectId() int64 {
  1171. if m != nil {
  1172. return m.ProjectId
  1173. }
  1174. return 0
  1175. }
  1176. func (m *VedioListRequest) GetFilter() string {
  1177. if m != nil {
  1178. return m.Filter
  1179. }
  1180. return ""
  1181. }
  1182. func (m *VedioListRequest) GetIsAll() bool {
  1183. if m != nil {
  1184. return m.IsAll
  1185. }
  1186. return false
  1187. }
  1188. type VedioItem struct {
  1189. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1190. SocialCode string `protobuf:"bytes,2,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  1191. // 设备类型编码
  1192. TypeCode int32 `protobuf:"varint,3,opt,name=type_code,json=typeCode,proto3" json:"type_code"`
  1193. TypeName string `protobuf:"bytes,4,opt,name=type_name,json=typeName,proto3" json:"type_name"`
  1194. // 申请时间
  1195. ApplyTime string `protobuf:"bytes,5,opt,name=apply_time,json=applyTime,proto3" json:"apply_time"`
  1196. // 审批时间
  1197. ApproveTime string `protobuf:"bytes,6,opt,name=approve_time,json=approveTime,proto3" json:"approve_time"`
  1198. // 0 待审核 1 项目通过 2 项目不通过
  1199. Status int32 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  1200. ProjectName string `protobuf:"bytes,8,opt,name=project_name,json=projectName,proto3" json:"project_name"`
  1201. // 安检备案号
  1202. SafetyRecordNo string `protobuf:"bytes,9,opt,name=safety_record_no,json=safetyRecordNo,proto3" json:"safety_record_no"`
  1203. // 0 离线 1 在线
  1204. State int32 `protobuf:"varint,10,opt,name=state,proto3" json:"state"`
  1205. Sn string `protobuf:"bytes,11,opt,name=sn,proto3" json:"sn"`
  1206. Key string `protobuf:"bytes,12,opt,name=key,proto3" json:"key"`
  1207. ProviderName string `protobuf:"bytes,13,opt,name=provider_name,json=providerName,proto3" json:"provider_name"`
  1208. Name string `protobuf:"bytes,14,opt,name=name,proto3" json:"name"`
  1209. Ip string `protobuf:"bytes,15,opt,name=ip,proto3" json:"ip"`
  1210. Port int64 `protobuf:"varint,16,opt,name=port,proto3" json:"port"`
  1211. MediaTransport string `protobuf:"bytes,17,opt,name=media_transport,json=mediaTransport,proto3" json:"media_transport"`
  1212. ChannelCount int32 `protobuf:"varint,18,opt,name=channel_count,json=channelCount,proto3" json:"channel_count"`
  1213. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1214. XXX_unrecognized []byte `json:"-"`
  1215. XXX_sizecache int32 `json:"-"`
  1216. }
  1217. func (m *VedioItem) Reset() { *m = VedioItem{} }
  1218. func (m *VedioItem) String() string { return proto.CompactTextString(m) }
  1219. func (*VedioItem) ProtoMessage() {}
  1220. func (*VedioItem) Descriptor() ([]byte, []int) {
  1221. return fileDescriptor_870276a56ac00da5, []int{22}
  1222. }
  1223. func (m *VedioItem) XXX_Unmarshal(b []byte) error {
  1224. return xxx_messageInfo_VedioItem.Unmarshal(m, b)
  1225. }
  1226. func (m *VedioItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1227. return xxx_messageInfo_VedioItem.Marshal(b, m, deterministic)
  1228. }
  1229. func (m *VedioItem) XXX_Merge(src proto.Message) {
  1230. xxx_messageInfo_VedioItem.Merge(m, src)
  1231. }
  1232. func (m *VedioItem) XXX_Size() int {
  1233. return xxx_messageInfo_VedioItem.Size(m)
  1234. }
  1235. func (m *VedioItem) XXX_DiscardUnknown() {
  1236. xxx_messageInfo_VedioItem.DiscardUnknown(m)
  1237. }
  1238. var xxx_messageInfo_VedioItem proto.InternalMessageInfo
  1239. func (m *VedioItem) GetId() int64 {
  1240. if m != nil {
  1241. return m.Id
  1242. }
  1243. return 0
  1244. }
  1245. func (m *VedioItem) GetSocialCode() string {
  1246. if m != nil {
  1247. return m.SocialCode
  1248. }
  1249. return ""
  1250. }
  1251. func (m *VedioItem) GetTypeCode() int32 {
  1252. if m != nil {
  1253. return m.TypeCode
  1254. }
  1255. return 0
  1256. }
  1257. func (m *VedioItem) GetTypeName() string {
  1258. if m != nil {
  1259. return m.TypeName
  1260. }
  1261. return ""
  1262. }
  1263. func (m *VedioItem) GetApplyTime() string {
  1264. if m != nil {
  1265. return m.ApplyTime
  1266. }
  1267. return ""
  1268. }
  1269. func (m *VedioItem) GetApproveTime() string {
  1270. if m != nil {
  1271. return m.ApproveTime
  1272. }
  1273. return ""
  1274. }
  1275. func (m *VedioItem) GetStatus() int32 {
  1276. if m != nil {
  1277. return m.Status
  1278. }
  1279. return 0
  1280. }
  1281. func (m *VedioItem) GetProjectName() string {
  1282. if m != nil {
  1283. return m.ProjectName
  1284. }
  1285. return ""
  1286. }
  1287. func (m *VedioItem) GetSafetyRecordNo() string {
  1288. if m != nil {
  1289. return m.SafetyRecordNo
  1290. }
  1291. return ""
  1292. }
  1293. func (m *VedioItem) GetState() int32 {
  1294. if m != nil {
  1295. return m.State
  1296. }
  1297. return 0
  1298. }
  1299. func (m *VedioItem) GetSn() string {
  1300. if m != nil {
  1301. return m.Sn
  1302. }
  1303. return ""
  1304. }
  1305. func (m *VedioItem) GetKey() string {
  1306. if m != nil {
  1307. return m.Key
  1308. }
  1309. return ""
  1310. }
  1311. func (m *VedioItem) GetProviderName() string {
  1312. if m != nil {
  1313. return m.ProviderName
  1314. }
  1315. return ""
  1316. }
  1317. func (m *VedioItem) GetName() string {
  1318. if m != nil {
  1319. return m.Name
  1320. }
  1321. return ""
  1322. }
  1323. func (m *VedioItem) GetIp() string {
  1324. if m != nil {
  1325. return m.Ip
  1326. }
  1327. return ""
  1328. }
  1329. func (m *VedioItem) GetPort() int64 {
  1330. if m != nil {
  1331. return m.Port
  1332. }
  1333. return 0
  1334. }
  1335. func (m *VedioItem) GetMediaTransport() string {
  1336. if m != nil {
  1337. return m.MediaTransport
  1338. }
  1339. return ""
  1340. }
  1341. func (m *VedioItem) GetChannelCount() int32 {
  1342. if m != nil {
  1343. return m.ChannelCount
  1344. }
  1345. return 0
  1346. }
  1347. type VedioListReply struct {
  1348. List []*VedioItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1349. Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  1350. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  1351. PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1352. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1353. XXX_unrecognized []byte `json:"-"`
  1354. XXX_sizecache int32 `json:"-"`
  1355. }
  1356. func (m *VedioListReply) Reset() { *m = VedioListReply{} }
  1357. func (m *VedioListReply) String() string { return proto.CompactTextString(m) }
  1358. func (*VedioListReply) ProtoMessage() {}
  1359. func (*VedioListReply) Descriptor() ([]byte, []int) {
  1360. return fileDescriptor_870276a56ac00da5, []int{23}
  1361. }
  1362. func (m *VedioListReply) XXX_Unmarshal(b []byte) error {
  1363. return xxx_messageInfo_VedioListReply.Unmarshal(m, b)
  1364. }
  1365. func (m *VedioListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1366. return xxx_messageInfo_VedioListReply.Marshal(b, m, deterministic)
  1367. }
  1368. func (m *VedioListReply) XXX_Merge(src proto.Message) {
  1369. xxx_messageInfo_VedioListReply.Merge(m, src)
  1370. }
  1371. func (m *VedioListReply) XXX_Size() int {
  1372. return xxx_messageInfo_VedioListReply.Size(m)
  1373. }
  1374. func (m *VedioListReply) XXX_DiscardUnknown() {
  1375. xxx_messageInfo_VedioListReply.DiscardUnknown(m)
  1376. }
  1377. var xxx_messageInfo_VedioListReply proto.InternalMessageInfo
  1378. func (m *VedioListReply) GetList() []*VedioItem {
  1379. if m != nil {
  1380. return m.List
  1381. }
  1382. return nil
  1383. }
  1384. func (m *VedioListReply) GetPage() int32 {
  1385. if m != nil {
  1386. return m.Page
  1387. }
  1388. return 0
  1389. }
  1390. func (m *VedioListReply) GetTotal() int64 {
  1391. if m != nil {
  1392. return m.Total
  1393. }
  1394. return 0
  1395. }
  1396. func (m *VedioListReply) GetPageSize() int32 {
  1397. if m != nil {
  1398. return m.PageSize
  1399. }
  1400. return 0
  1401. }
  1402. type ProjectItem struct {
  1403. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1404. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  1405. ShortName string `protobuf:"bytes,3,opt,name=short_name,json=shortName,proto3" json:"short_name"`
  1406. ProjectNo string `protobuf:"bytes,4,opt,name=project_no,json=projectNo,proto3" json:"project_no"`
  1407. SafetyRecordNo string `protobuf:"bytes,5,opt,name=safety_record_no,json=safetyRecordNo,proto3" json:"safety_record_no"`
  1408. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1409. XXX_unrecognized []byte `json:"-"`
  1410. XXX_sizecache int32 `json:"-"`
  1411. }
  1412. func (m *ProjectItem) Reset() { *m = ProjectItem{} }
  1413. func (m *ProjectItem) String() string { return proto.CompactTextString(m) }
  1414. func (*ProjectItem) ProtoMessage() {}
  1415. func (*ProjectItem) Descriptor() ([]byte, []int) {
  1416. return fileDescriptor_870276a56ac00da5, []int{24}
  1417. }
  1418. func (m *ProjectItem) XXX_Unmarshal(b []byte) error {
  1419. return xxx_messageInfo_ProjectItem.Unmarshal(m, b)
  1420. }
  1421. func (m *ProjectItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1422. return xxx_messageInfo_ProjectItem.Marshal(b, m, deterministic)
  1423. }
  1424. func (m *ProjectItem) XXX_Merge(src proto.Message) {
  1425. xxx_messageInfo_ProjectItem.Merge(m, src)
  1426. }
  1427. func (m *ProjectItem) XXX_Size() int {
  1428. return xxx_messageInfo_ProjectItem.Size(m)
  1429. }
  1430. func (m *ProjectItem) XXX_DiscardUnknown() {
  1431. xxx_messageInfo_ProjectItem.DiscardUnknown(m)
  1432. }
  1433. var xxx_messageInfo_ProjectItem proto.InternalMessageInfo
  1434. func (m *ProjectItem) GetId() int64 {
  1435. if m != nil {
  1436. return m.Id
  1437. }
  1438. return 0
  1439. }
  1440. func (m *ProjectItem) GetName() string {
  1441. if m != nil {
  1442. return m.Name
  1443. }
  1444. return ""
  1445. }
  1446. func (m *ProjectItem) GetShortName() string {
  1447. if m != nil {
  1448. return m.ShortName
  1449. }
  1450. return ""
  1451. }
  1452. func (m *ProjectItem) GetProjectNo() string {
  1453. if m != nil {
  1454. return m.ProjectNo
  1455. }
  1456. return ""
  1457. }
  1458. func (m *ProjectItem) GetSafetyRecordNo() string {
  1459. if m != nil {
  1460. return m.SafetyRecordNo
  1461. }
  1462. return ""
  1463. }
  1464. type ProjectListRequest struct {
  1465. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1466. XXX_unrecognized []byte `json:"-"`
  1467. XXX_sizecache int32 `json:"-"`
  1468. }
  1469. func (m *ProjectListRequest) Reset() { *m = ProjectListRequest{} }
  1470. func (m *ProjectListRequest) String() string { return proto.CompactTextString(m) }
  1471. func (*ProjectListRequest) ProtoMessage() {}
  1472. func (*ProjectListRequest) Descriptor() ([]byte, []int) {
  1473. return fileDescriptor_870276a56ac00da5, []int{25}
  1474. }
  1475. func (m *ProjectListRequest) XXX_Unmarshal(b []byte) error {
  1476. return xxx_messageInfo_ProjectListRequest.Unmarshal(m, b)
  1477. }
  1478. func (m *ProjectListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1479. return xxx_messageInfo_ProjectListRequest.Marshal(b, m, deterministic)
  1480. }
  1481. func (m *ProjectListRequest) XXX_Merge(src proto.Message) {
  1482. xxx_messageInfo_ProjectListRequest.Merge(m, src)
  1483. }
  1484. func (m *ProjectListRequest) XXX_Size() int {
  1485. return xxx_messageInfo_ProjectListRequest.Size(m)
  1486. }
  1487. func (m *ProjectListRequest) XXX_DiscardUnknown() {
  1488. xxx_messageInfo_ProjectListRequest.DiscardUnknown(m)
  1489. }
  1490. var xxx_messageInfo_ProjectListRequest proto.InternalMessageInfo
  1491. type ProjectListReply struct {
  1492. List []*ProjectItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1493. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1494. XXX_unrecognized []byte `json:"-"`
  1495. XXX_sizecache int32 `json:"-"`
  1496. }
  1497. func (m *ProjectListReply) Reset() { *m = ProjectListReply{} }
  1498. func (m *ProjectListReply) String() string { return proto.CompactTextString(m) }
  1499. func (*ProjectListReply) ProtoMessage() {}
  1500. func (*ProjectListReply) Descriptor() ([]byte, []int) {
  1501. return fileDescriptor_870276a56ac00da5, []int{26}
  1502. }
  1503. func (m *ProjectListReply) XXX_Unmarshal(b []byte) error {
  1504. return xxx_messageInfo_ProjectListReply.Unmarshal(m, b)
  1505. }
  1506. func (m *ProjectListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1507. return xxx_messageInfo_ProjectListReply.Marshal(b, m, deterministic)
  1508. }
  1509. func (m *ProjectListReply) XXX_Merge(src proto.Message) {
  1510. xxx_messageInfo_ProjectListReply.Merge(m, src)
  1511. }
  1512. func (m *ProjectListReply) XXX_Size() int {
  1513. return xxx_messageInfo_ProjectListReply.Size(m)
  1514. }
  1515. func (m *ProjectListReply) XXX_DiscardUnknown() {
  1516. xxx_messageInfo_ProjectListReply.DiscardUnknown(m)
  1517. }
  1518. var xxx_messageInfo_ProjectListReply proto.InternalMessageInfo
  1519. func (m *ProjectListReply) GetList() []*ProjectItem {
  1520. if m != nil {
  1521. return m.List
  1522. }
  1523. return nil
  1524. }
  1525. type DeviceDelJobItem struct {
  1526. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1527. SocialCode string `protobuf:"bytes,2,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  1528. // 设备类型编码
  1529. TypeCode int32 `protobuf:"varint,3,opt,name=type_code,json=typeCode,proto3" json:"type_code"`
  1530. TypeName string `protobuf:"bytes,4,opt,name=type_name,json=typeName,proto3" json:"type_name"`
  1531. // 申请时间
  1532. ApplyTime string `protobuf:"bytes,5,opt,name=apply_time,json=applyTime,proto3" json:"apply_time"`
  1533. // 审批时间
  1534. ApproveTime string `protobuf:"bytes,6,opt,name=approve_time,json=approveTime,proto3" json:"approve_time"`
  1535. // 0 待审核 1 通过 2 项目不通过
  1536. Status int32 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  1537. // 项目名称
  1538. ProjectName string `protobuf:"bytes,8,opt,name=project_name,json=projectName,proto3" json:"project_name"`
  1539. // 安检备案号
  1540. SafetyRecordNo string `protobuf:"bytes,9,opt,name=safety_record_no,json=safetyRecordNo,proto3" json:"safety_record_no"`
  1541. ProviderName string `protobuf:"bytes,10,opt,name=provider_name,json=providerName,proto3" json:"provider_name"`
  1542. Sn string `protobuf:"bytes,11,opt,name=sn,proto3" json:"sn"`
  1543. Reason string `protobuf:"bytes,12,opt,name=reason,proto3" json:"reason"`
  1544. Feedback string `protobuf:"bytes,13,opt,name=feedback,proto3" json:"feedback"`
  1545. DeviceName string `protobuf:"bytes,14,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  1546. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1547. XXX_unrecognized []byte `json:"-"`
  1548. XXX_sizecache int32 `json:"-"`
  1549. }
  1550. func (m *DeviceDelJobItem) Reset() { *m = DeviceDelJobItem{} }
  1551. func (m *DeviceDelJobItem) String() string { return proto.CompactTextString(m) }
  1552. func (*DeviceDelJobItem) ProtoMessage() {}
  1553. func (*DeviceDelJobItem) Descriptor() ([]byte, []int) {
  1554. return fileDescriptor_870276a56ac00da5, []int{27}
  1555. }
  1556. func (m *DeviceDelJobItem) XXX_Unmarshal(b []byte) error {
  1557. return xxx_messageInfo_DeviceDelJobItem.Unmarshal(m, b)
  1558. }
  1559. func (m *DeviceDelJobItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1560. return xxx_messageInfo_DeviceDelJobItem.Marshal(b, m, deterministic)
  1561. }
  1562. func (m *DeviceDelJobItem) XXX_Merge(src proto.Message) {
  1563. xxx_messageInfo_DeviceDelJobItem.Merge(m, src)
  1564. }
  1565. func (m *DeviceDelJobItem) XXX_Size() int {
  1566. return xxx_messageInfo_DeviceDelJobItem.Size(m)
  1567. }
  1568. func (m *DeviceDelJobItem) XXX_DiscardUnknown() {
  1569. xxx_messageInfo_DeviceDelJobItem.DiscardUnknown(m)
  1570. }
  1571. var xxx_messageInfo_DeviceDelJobItem proto.InternalMessageInfo
  1572. func (m *DeviceDelJobItem) GetId() int64 {
  1573. if m != nil {
  1574. return m.Id
  1575. }
  1576. return 0
  1577. }
  1578. func (m *DeviceDelJobItem) GetSocialCode() string {
  1579. if m != nil {
  1580. return m.SocialCode
  1581. }
  1582. return ""
  1583. }
  1584. func (m *DeviceDelJobItem) GetTypeCode() int32 {
  1585. if m != nil {
  1586. return m.TypeCode
  1587. }
  1588. return 0
  1589. }
  1590. func (m *DeviceDelJobItem) GetTypeName() string {
  1591. if m != nil {
  1592. return m.TypeName
  1593. }
  1594. return ""
  1595. }
  1596. func (m *DeviceDelJobItem) GetApplyTime() string {
  1597. if m != nil {
  1598. return m.ApplyTime
  1599. }
  1600. return ""
  1601. }
  1602. func (m *DeviceDelJobItem) GetApproveTime() string {
  1603. if m != nil {
  1604. return m.ApproveTime
  1605. }
  1606. return ""
  1607. }
  1608. func (m *DeviceDelJobItem) GetStatus() int32 {
  1609. if m != nil {
  1610. return m.Status
  1611. }
  1612. return 0
  1613. }
  1614. func (m *DeviceDelJobItem) GetProjectName() string {
  1615. if m != nil {
  1616. return m.ProjectName
  1617. }
  1618. return ""
  1619. }
  1620. func (m *DeviceDelJobItem) GetSafetyRecordNo() string {
  1621. if m != nil {
  1622. return m.SafetyRecordNo
  1623. }
  1624. return ""
  1625. }
  1626. func (m *DeviceDelJobItem) GetProviderName() string {
  1627. if m != nil {
  1628. return m.ProviderName
  1629. }
  1630. return ""
  1631. }
  1632. func (m *DeviceDelJobItem) GetSn() string {
  1633. if m != nil {
  1634. return m.Sn
  1635. }
  1636. return ""
  1637. }
  1638. func (m *DeviceDelJobItem) GetReason() string {
  1639. if m != nil {
  1640. return m.Reason
  1641. }
  1642. return ""
  1643. }
  1644. func (m *DeviceDelJobItem) GetFeedback() string {
  1645. if m != nil {
  1646. return m.Feedback
  1647. }
  1648. return ""
  1649. }
  1650. func (m *DeviceDelJobItem) GetDeviceName() string {
  1651. if m != nil {
  1652. return m.DeviceName
  1653. }
  1654. return ""
  1655. }
  1656. type DeviceDelJobListRequest struct {
  1657. ProviderId int64 `protobuf:"varint,1,opt,name=provider_id,json=providerId,proto3" json:"provider_id"`
  1658. // 状态过滤 审核状态 0 待审核 1 通过 2 未通过
  1659. StatusFilters []int32 `protobuf:"varint,2,rep,packed,name=status_filters,json=statusFilters,proto3" json:"status_filters"`
  1660. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  1661. ProjectId int64 `protobuf:"varint,4,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1662. Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter"`
  1663. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1664. XXX_unrecognized []byte `json:"-"`
  1665. XXX_sizecache int32 `json:"-"`
  1666. }
  1667. func (m *DeviceDelJobListRequest) Reset() { *m = DeviceDelJobListRequest{} }
  1668. func (m *DeviceDelJobListRequest) String() string { return proto.CompactTextString(m) }
  1669. func (*DeviceDelJobListRequest) ProtoMessage() {}
  1670. func (*DeviceDelJobListRequest) Descriptor() ([]byte, []int) {
  1671. return fileDescriptor_870276a56ac00da5, []int{28}
  1672. }
  1673. func (m *DeviceDelJobListRequest) XXX_Unmarshal(b []byte) error {
  1674. return xxx_messageInfo_DeviceDelJobListRequest.Unmarshal(m, b)
  1675. }
  1676. func (m *DeviceDelJobListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1677. return xxx_messageInfo_DeviceDelJobListRequest.Marshal(b, m, deterministic)
  1678. }
  1679. func (m *DeviceDelJobListRequest) XXX_Merge(src proto.Message) {
  1680. xxx_messageInfo_DeviceDelJobListRequest.Merge(m, src)
  1681. }
  1682. func (m *DeviceDelJobListRequest) XXX_Size() int {
  1683. return xxx_messageInfo_DeviceDelJobListRequest.Size(m)
  1684. }
  1685. func (m *DeviceDelJobListRequest) XXX_DiscardUnknown() {
  1686. xxx_messageInfo_DeviceDelJobListRequest.DiscardUnknown(m)
  1687. }
  1688. var xxx_messageInfo_DeviceDelJobListRequest proto.InternalMessageInfo
  1689. func (m *DeviceDelJobListRequest) GetProviderId() int64 {
  1690. if m != nil {
  1691. return m.ProviderId
  1692. }
  1693. return 0
  1694. }
  1695. func (m *DeviceDelJobListRequest) GetStatusFilters() []int32 {
  1696. if m != nil {
  1697. return m.StatusFilters
  1698. }
  1699. return nil
  1700. }
  1701. func (m *DeviceDelJobListRequest) GetPage() int32 {
  1702. if m != nil {
  1703. return m.Page
  1704. }
  1705. return 0
  1706. }
  1707. func (m *DeviceDelJobListRequest) GetProjectId() int64 {
  1708. if m != nil {
  1709. return m.ProjectId
  1710. }
  1711. return 0
  1712. }
  1713. func (m *DeviceDelJobListRequest) GetFilter() string {
  1714. if m != nil {
  1715. return m.Filter
  1716. }
  1717. return ""
  1718. }
  1719. type DeviceDelJobListReply struct {
  1720. PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1721. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  1722. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  1723. List []*DeviceDelJobItem `protobuf:"bytes,5,rep,name=list,proto3" json:"list"`
  1724. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1725. XXX_unrecognized []byte `json:"-"`
  1726. XXX_sizecache int32 `json:"-"`
  1727. }
  1728. func (m *DeviceDelJobListReply) Reset() { *m = DeviceDelJobListReply{} }
  1729. func (m *DeviceDelJobListReply) String() string { return proto.CompactTextString(m) }
  1730. func (*DeviceDelJobListReply) ProtoMessage() {}
  1731. func (*DeviceDelJobListReply) Descriptor() ([]byte, []int) {
  1732. return fileDescriptor_870276a56ac00da5, []int{29}
  1733. }
  1734. func (m *DeviceDelJobListReply) XXX_Unmarshal(b []byte) error {
  1735. return xxx_messageInfo_DeviceDelJobListReply.Unmarshal(m, b)
  1736. }
  1737. func (m *DeviceDelJobListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1738. return xxx_messageInfo_DeviceDelJobListReply.Marshal(b, m, deterministic)
  1739. }
  1740. func (m *DeviceDelJobListReply) XXX_Merge(src proto.Message) {
  1741. xxx_messageInfo_DeviceDelJobListReply.Merge(m, src)
  1742. }
  1743. func (m *DeviceDelJobListReply) XXX_Size() int {
  1744. return xxx_messageInfo_DeviceDelJobListReply.Size(m)
  1745. }
  1746. func (m *DeviceDelJobListReply) XXX_DiscardUnknown() {
  1747. xxx_messageInfo_DeviceDelJobListReply.DiscardUnknown(m)
  1748. }
  1749. var xxx_messageInfo_DeviceDelJobListReply proto.InternalMessageInfo
  1750. func (m *DeviceDelJobListReply) GetPageSize() int32 {
  1751. if m != nil {
  1752. return m.PageSize
  1753. }
  1754. return 0
  1755. }
  1756. func (m *DeviceDelJobListReply) GetTotal() int64 {
  1757. if m != nil {
  1758. return m.Total
  1759. }
  1760. return 0
  1761. }
  1762. func (m *DeviceDelJobListReply) GetPage() int32 {
  1763. if m != nil {
  1764. return m.Page
  1765. }
  1766. return 0
  1767. }
  1768. func (m *DeviceDelJobListReply) GetList() []*DeviceDelJobItem {
  1769. if m != nil {
  1770. return m.List
  1771. }
  1772. return nil
  1773. }
  1774. func init() {
  1775. proto.RegisterType((*DeviceDockingRequest)(nil), "v1.DeviceDockingRequest")
  1776. proto.RegisterType((*DeviceDockingReply)(nil), "v1.DeviceDockingReply")
  1777. proto.RegisterType((*DeviceAddRequest)(nil), "v1.DeviceAddRequest")
  1778. proto.RegisterType((*DeviceAddReply)(nil), "v1.DeviceAddReply")
  1779. proto.RegisterType((*VedioAddRequest)(nil), "v1.VedioAddRequest")
  1780. proto.RegisterType((*VedioAddReply)(nil), "v1.VedioAddReply")
  1781. proto.RegisterType((*ChannelAddRequest)(nil), "v1.ChannelAddRequest")
  1782. proto.RegisterType((*ChannelAddReply)(nil), "v1.ChannelAddReply")
  1783. proto.RegisterType((*ChannelUpdateRequest)(nil), "v1.ChannelUpdateRequest")
  1784. proto.RegisterType((*ChannelUpdateReply)(nil), "v1.ChannelUpdateReply")
  1785. proto.RegisterType((*ChannelListRequest)(nil), "v1.ChannelListRequest")
  1786. proto.RegisterType((*ChannelItem)(nil), "v1.ChannelItem")
  1787. proto.RegisterType((*ChannelListReply)(nil), "v1.ChannelListReply")
  1788. proto.RegisterType((*DeviceDelRequest)(nil), "v1.DeviceDelRequest")
  1789. proto.RegisterType((*DeviceDelReply)(nil), "v1.DeviceDelReply")
  1790. proto.RegisterType((*DeviceTypeListRequest)(nil), "v1.DeviceTypeListRequest")
  1791. proto.RegisterType((*DeviceTypeItem)(nil), "v1.DeviceTypeItem")
  1792. proto.RegisterType((*DeviceTypeListReply)(nil), "v1.DeviceTypeListReply")
  1793. proto.RegisterType((*DeviceListRequest)(nil), "v1.DeviceListRequest")
  1794. proto.RegisterType((*DeviceItem)(nil), "v1.DeviceItem")
  1795. proto.RegisterType((*DeviceListReply)(nil), "v1.DeviceListReply")
  1796. proto.RegisterType((*VedioListRequest)(nil), "v1.VedioListRequest")
  1797. proto.RegisterType((*VedioItem)(nil), "v1.VedioItem")
  1798. proto.RegisterType((*VedioListReply)(nil), "v1.VedioListReply")
  1799. proto.RegisterType((*ProjectItem)(nil), "v1.ProjectItem")
  1800. proto.RegisterType((*ProjectListRequest)(nil), "v1.ProjectListRequest")
  1801. proto.RegisterType((*ProjectListReply)(nil), "v1.ProjectListReply")
  1802. proto.RegisterType((*DeviceDelJobItem)(nil), "v1.DeviceDelJobItem")
  1803. proto.RegisterType((*DeviceDelJobListRequest)(nil), "v1.DeviceDelJobListRequest")
  1804. proto.RegisterType((*DeviceDelJobListReply)(nil), "v1.DeviceDelJobListReply")
  1805. }
  1806. func init() {
  1807. proto.RegisterFile("device.proto", fileDescriptor_870276a56ac00da5)
  1808. }
  1809. var fileDescriptor_870276a56ac00da5 = []byte{
  1810. // 1224 bytes of a gzipped FileDescriptorProto
  1811. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4d, 0x6f, 0xe3, 0xc4,
  1812. 0x1b, 0x97, 0xe3, 0x24, 0x4d, 0x9e, 0xbc, 0xae, 0xff, 0xd9, 0x5d, 0xff, 0x59, 0x55, 0x6d, 0xbd,
  1813. 0xbc, 0x44, 0x48, 0xdb, 0x52, 0xf6, 0x80, 0x84, 0xc4, 0x61, 0x69, 0x05, 0x04, 0xa1, 0x0a, 0x99,
  1814. 0x02, 0x12, 0x17, 0x6b, 0xea, 0x99, 0x76, 0x4d, 0x1d, 0x8f, 0xb1, 0x27, 0xd1, 0xa6, 0x42, 0x88,
  1815. 0x03, 0x07, 0x6e, 0x9c, 0x39, 0x72, 0x44, 0x42, 0x7c, 0x02, 0xbe, 0x15, 0x7c, 0x00, 0x34, 0xcf,
  1816. 0x8c, 0x9d, 0xb1, 0x1b, 0xaa, 0x95, 0x58, 0xa4, 0x1e, 0xf6, 0x36, 0xf3, 0x9b, 0xf1, 0x3c, 0x6f,
  1817. 0xbf, 0xdf, 0x33, 0x93, 0x40, 0x9f, 0xb2, 0x65, 0x14, 0xb2, 0xfd, 0x34, 0xe3, 0x82, 0x3b, 0x8d,
  1818. 0xe5, 0xa1, 0x37, 0x83, 0xc9, 0x31, 0x62, 0xc7, 0x3c, 0xbc, 0x8c, 0x92, 0x0b, 0x9f, 0x7d, 0xb3,
  1819. 0x60, 0xb9, 0x70, 0xc6, 0x60, 0x2f, 0x22, 0xea, 0x5a, 0xbb, 0xd6, 0xd4, 0xf6, 0xe5, 0xd0, 0xd9,
  1820. 0x81, 0x9e, 0xfa, 0x3a, 0x10, 0xab, 0x94, 0xb9, 0x8d, 0x5d, 0x6b, 0xda, 0xf2, 0x41, 0x41, 0xa7,
  1821. 0xab, 0x94, 0x79, 0xaf, 0x82, 0x53, 0x3b, 0x2a, 0x8d, 0x57, 0xce, 0x10, 0x1a, 0xe5, 0x39, 0x8d,
  1822. 0x88, 0x7a, 0x7f, 0x59, 0x30, 0x56, 0xdb, 0x9e, 0x50, 0x5a, 0x58, 0xdb, 0x06, 0x48, 0x33, 0xfe,
  1823. 0x35, 0x0b, 0x45, 0x50, 0x6e, 0xee, 0x6a, 0x64, 0x46, 0x1d, 0x07, 0x9a, 0x09, 0x99, 0x2b, 0x9b,
  1824. 0x5d, 0x1f, 0xc7, 0xf2, 0xdc, 0x3c, 0x71, 0x6d, 0x44, 0x1a, 0x79, 0x22, 0xf7, 0x10, 0x4a, 0x33,
  1825. 0xb7, 0xa9, 0xf6, 0xc8, 0xb1, 0xc4, 0xd0, 0xd7, 0x16, 0xfa, 0x8a, 0x63, 0x19, 0x58, 0xcc, 0x13,
  1826. 0xb7, 0xbd, 0x6b, 0x4d, 0x2d, 0x5f, 0x0e, 0x11, 0x21, 0xc2, 0xdd, 0xd2, 0x08, 0x11, 0xce, 0x7d,
  1827. 0xd8, 0x7a, 0x16, 0x84, 0x9c, 0x67, 0xd4, 0xed, 0x20, 0xda, 0x7e, 0x76, 0x24, 0x67, 0x72, 0x61,
  1828. 0xa5, 0x17, 0xba, 0x6a, 0x61, 0xa5, 0x16, 0x76, 0xa0, 0x97, 0x66, 0x7c, 0x19, 0x51, 0x96, 0xc9,
  1829. 0x08, 0x00, 0x23, 0x80, 0x02, 0x9a, 0x51, 0xef, 0x11, 0x0c, 0x8d, 0xa8, 0x65, 0x62, 0x1e, 0x40,
  1830. 0x57, 0xe7, 0xb3, 0x0c, 0xb9, 0xa3, 0x80, 0x19, 0xf5, 0x7e, 0xb5, 0x60, 0xf4, 0x05, 0xa3, 0x11,
  1831. 0xff, 0x77, 0x49, 0xaa, 0xb9, 0x65, 0xd7, 0xdd, 0x72, 0x1e, 0xc2, 0x20, 0x7c, 0x4a, 0x92, 0x84,
  1832. 0xc5, 0x41, 0xc8, 0x17, 0x89, 0xc0, 0xf4, 0xb5, 0xfc, 0xbe, 0x06, 0x8f, 0x24, 0x26, 0x0d, 0x2f,
  1833. 0xa5, 0x2f, 0x81, 0x91, 0xcc, 0x2e, 0x22, 0x58, 0xf7, 0x37, 0x61, 0xb0, 0x76, 0x55, 0x46, 0xf6,
  1834. 0x7f, 0xe8, 0xa8, 0xfd, 0x11, 0xc5, 0xdd, 0xb6, 0xbf, 0x85, 0xf3, 0x19, 0xf5, 0x3e, 0x82, 0x3b,
  1835. 0x47, 0xea, 0x68, 0x23, 0x30, 0x55, 0x4a, 0xab, 0x2c, 0xe5, 0x35, 0xa7, 0x1a, 0xd7, 0x9d, 0xf2,
  1836. 0xde, 0x82, 0x91, 0x79, 0x92, 0xb4, 0x7b, 0x73, 0x82, 0xbc, 0x77, 0x61, 0xa2, 0xbf, 0xf8, 0x3c,
  1837. 0xa5, 0x44, 0x30, 0xc3, 0xbc, 0xc9, 0xd0, 0x4d, 0x89, 0xf4, 0x1e, 0x83, 0x53, 0xfb, 0xf6, 0x39,
  1838. 0x0c, 0x7e, 0x59, 0x7e, 0xf4, 0x49, 0x94, 0x8b, 0xc2, 0x9c, 0x03, 0xcd, 0x94, 0x5c, 0x30, 0xdc,
  1839. 0xde, 0xf2, 0x71, 0xac, 0x33, 0xd0, 0x28, 0x33, 0xb0, 0x0d, 0x50, 0x64, 0x20, 0xe1, 0x9a, 0xe4,
  1840. 0x5d, 0x8d, 0x9c, 0x70, 0xef, 0x1c, 0x7a, 0xfa, 0xe0, 0x99, 0x60, 0xf3, 0xd2, 0x61, 0xab, 0x2a,
  1841. 0x8f, 0x88, 0xe2, 0x89, 0x2a, 0xa8, 0x9b, 0x4f, 0x74, 0x26, 0xd0, 0xca, 0x05, 0x11, 0x4c, 0xd7,
  1842. 0x5f, 0x4d, 0xbc, 0xef, 0x60, 0x5c, 0x09, 0x40, 0xc6, 0xfc, 0x10, 0x9a, 0x71, 0x94, 0x0b, 0xd7,
  1843. 0xda, 0xb5, 0xa7, 0xbd, 0xb7, 0x47, 0xfb, 0xcb, 0xc3, 0x7d, 0xc3, 0x17, 0x1f, 0x17, 0xcb, 0x18,
  1844. 0x1b, 0x46, 0x8c, 0x13, 0x68, 0x09, 0x2e, 0x48, 0xac, 0x59, 0xa8, 0x26, 0x52, 0x05, 0x72, 0x35,
  1845. 0xc8, 0xa3, 0xab, 0xc2, 0x78, 0x47, 0x02, 0x9f, 0x45, 0x57, 0xcc, 0xfb, 0xb0, 0x68, 0x15, 0xc7,
  1846. 0x2c, 0x2e, 0xd2, 0x77, 0x93, 0x6c, 0x9c, 0x7b, 0xd0, 0xce, 0x18, 0xc9, 0x79, 0x91, 0x4b, 0x3d,
  1847. 0xf3, 0x0e, 0x0a, 0xf5, 0xe1, 0x41, 0xcf, 0x51, 0xba, 0x1f, 0x2c, 0xb8, 0x7b, 0x5c, 0xb6, 0x36,
  1848. 0xb3, 0x7c, 0x35, 0x49, 0x59, 0xd7, 0x24, 0xf5, 0x1a, 0x0c, 0x65, 0xf6, 0x16, 0x79, 0x70, 0x1e,
  1849. 0xc5, 0x82, 0x65, 0xb9, 0xdb, 0xd8, 0xb5, 0xa7, 0x2d, 0x7f, 0xa0, 0xd0, 0x0f, 0x14, 0x28, 0x49,
  1850. 0x1e, 0x25, 0x61, 0xbc, 0xa0, 0x2c, 0x40, 0x71, 0x60, 0x5a, 0x3a, 0x7e, 0x5f, 0x83, 0xa8, 0x28,
  1851. 0xef, 0x17, 0xab, 0x70, 0x5c, 0xba, 0x81, 0xc5, 0x7e, 0x00, 0x5d, 0x29, 0xc3, 0x20, 0xe4, 0xb4,
  1852. 0xe0, 0x50, 0x47, 0x02, 0x47, 0x9c, 0xb2, 0x72, 0xd1, 0xe0, 0x2f, 0x2e, 0x9e, 0x48, 0x4a, 0xec,
  1853. 0x41, 0x3f, 0xcc, 0x18, 0x11, 0x8c, 0x06, 0x22, 0x9a, 0x33, 0x4d, 0x82, 0x9e, 0xc6, 0x4e, 0xa3,
  1854. 0x39, 0x93, 0xf9, 0x53, 0x5e, 0xea, 0x52, 0xe8, 0x99, 0xf3, 0x0a, 0x74, 0xce, 0x19, 0xa3, 0x67,
  1855. 0x24, 0xbc, 0x44, 0x45, 0x77, 0xfd, 0x72, 0xee, 0xbd, 0x07, 0xff, 0xab, 0x67, 0x4a, 0x26, 0xf8,
  1856. 0xf5, 0x0a, 0x4f, 0x1c, 0xc9, 0x93, 0x6a, 0x24, 0x8a, 0x2a, 0xde, 0x9f, 0x16, 0xdc, 0x51, 0x0b,
  1857. 0xff, 0x45, 0x96, 0x0b, 0x22, 0xda, 0x06, 0x11, 0xab, 0xa5, 0x6f, 0xd6, 0xfb, 0xe8, 0x3d, 0x68,
  1858. 0xab, 0x23, 0x75, 0xa4, 0x7a, 0x56, 0x4d, 0x7c, 0xbb, 0x96, 0xf8, 0xbb, 0xd0, 0x8e, 0xf2, 0x80,
  1859. 0xc4, 0x31, 0x5e, 0x23, 0x1d, 0xbf, 0x15, 0xe5, 0x4f, 0xe2, 0x58, 0xde, 0x17, 0x21, 0x49, 0x02,
  1860. 0xca, 0x62, 0xbc, 0x48, 0x3a, 0x7e, 0x3b, 0x24, 0xc9, 0x31, 0x8b, 0xbd, 0x9f, 0x6c, 0x00, 0x15,
  1861. 0x35, 0x16, 0xb5, 0xde, 0x82, 0x76, 0xa0, 0x97, 0xf3, 0x30, 0x22, 0xb1, 0xb2, 0xa6, 0x2a, 0x09,
  1862. 0x0a, 0xaa, 0x14, 0x1a, 0x97, 0xed, 0x9b, 0x58, 0xd0, 0xac, 0xb1, 0x60, 0x1b, 0x80, 0xa4, 0x69,
  1863. 0xbc, 0x52, 0x1c, 0x50, 0x21, 0x76, 0x11, 0x41, 0x06, 0xec, 0x41, 0x9f, 0xa4, 0x32, 0xcf, 0x4c,
  1864. 0x6d, 0x68, 0x2b, 0x92, 0x68, 0xac, 0x46, 0x92, 0xad, 0x0a, 0x49, 0xf6, 0xa0, 0x5f, 0xe4, 0x15,
  1865. 0x2d, 0x77, 0xd4, 0xa7, 0x1a, 0x43, 0xe3, 0x53, 0x18, 0xe7, 0xe4, 0x9c, 0x89, 0x55, 0x90, 0xb1,
  1866. 0x90, 0x67, 0x54, 0xf6, 0xa2, 0x2e, 0x6e, 0x1b, 0x2a, 0xdc, 0x47, 0xd8, 0x6c, 0x48, 0x60, 0x34,
  1867. 0x24, 0xdd, 0x27, 0x7b, 0x65, 0x9f, 0x1c, 0x83, 0x7d, 0xc9, 0x56, 0x6e, 0x1f, 0x01, 0x39, 0x94,
  1868. 0xb2, 0x2a, 0x89, 0x83, 0x5e, 0x0c, 0x70, 0xad, 0x5f, 0x80, 0xe8, 0x46, 0xd1, 0x30, 0x87, 0x46,
  1869. 0x87, 0xff, 0x16, 0x46, 0x26, 0x0d, 0x25, 0x85, 0xbd, 0x0a, 0x85, 0x87, 0x6b, 0x0a, 0xbf, 0xf8,
  1870. 0x4e, 0xf7, 0x87, 0x05, 0x63, 0x94, 0xfc, 0x2d, 0x17, 0xc1, 0x66, 0x9e, 0x7b, 0xdf, 0x37, 0xa1,
  1871. 0x8b, 0xee, 0xbf, 0x64, 0xf3, 0xad, 0x60, 0x33, 0x96, 0x20, 0x75, 0x47, 0xea, 0xe8, 0x28, 0x45,
  1872. 0x0a, 0xf0, 0x4c, 0xb8, 0x63, 0x2c, 0x0a, 0x8e, 0x9d, 0x37, 0x60, 0x34, 0x67, 0x34, 0x22, 0x81,
  1873. 0xc8, 0x48, 0x92, 0xe3, 0xf2, 0x1d, 0xe5, 0x3d, 0xc2, 0xa7, 0x05, 0x7a, 0xfd, 0x3d, 0xe6, 0x6c,
  1874. 0x78, 0x8f, 0x5d, 0xc1, 0xd0, 0x20, 0xb0, 0x94, 0xcf, 0x5e, 0x45, 0x3e, 0x03, 0x29, 0x9f, 0x92,
  1875. 0x23, 0x2f, 0x56, 0x3d, 0x3f, 0x5b, 0xd0, 0xfb, 0x54, 0x73, 0x77, 0x13, 0x01, 0x37, 0x3d, 0x8d,
  1876. 0xb7, 0x01, 0xf2, 0xa7, 0x3c, 0xd3, 0xd5, 0xd5, 0x0f, 0x22, 0x44, 0x0a, 0x62, 0x95, 0xe5, 0xe7,
  1877. 0x9a, 0x76, 0x85, 0x3e, 0x4e, 0xf8, 0xc6, 0xd2, 0xb7, 0x36, 0x95, 0xde, 0x9b, 0x80, 0xa3, 0x5d,
  1878. 0x33, 0xa4, 0xed, 0xbd, 0x03, 0xe3, 0x0a, 0xfa, 0x0f, 0x2f, 0x2b, 0x23, 0x28, 0x7d, 0x5d, 0xfe,
  1879. 0x6e, 0x1b, 0x6f, 0xa2, 0x8f, 0xf9, 0xd9, 0x4b, 0xc1, 0x6d, 0x14, 0xdc, 0x35, 0xe1, 0xc0, 0x06,
  1880. 0xe1, 0xd4, 0xf5, 0xb7, 0x7e, 0x3d, 0xf6, 0xcd, 0xd7, 0x63, 0xe5, 0xf5, 0x33, 0xa8, 0xbe, 0x7e,
  1881. 0x8c, 0x5f, 0xc5, 0x86, 0x06, 0xf5, 0xaf, 0x62, 0x69, 0xc4, 0xfb, 0xcd, 0x82, 0xfb, 0x66, 0xc1,
  1882. 0x6e, 0x77, 0x83, 0xf7, 0x7e, 0x2c, 0x1f, 0xbe, 0xa6, 0xbb, 0xfa, 0xf7, 0xea, 0x5a, 0x81, 0x56,
  1883. 0x55, 0x81, 0x6b, 0xd1, 0x36, 0x4c, 0xd1, 0x6e, 0xf2, 0x6b, 0xaa, 0x59, 0xde, 0x42, 0x96, 0x4f,
  1884. 0xd6, 0x97, 0xea, 0x9a, 0xcf, 0x8a, 0xea, 0xef, 0xef, 0x7d, 0xb5, 0x93, 0xcf, 0x49, 0x26, 0x1e,
  1885. 0xe5, 0x8b, 0x34, 0x8d, 0x23, 0x96, 0x3d, 0x9a, 0x93, 0x84, 0x5c, 0xb0, 0x39, 0x4b, 0xc4, 0x41,
  1886. 0x7a, 0x76, 0xb0, 0x3c, 0x3c, 0x6b, 0xe3, 0x1f, 0x19, 0x8f, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff,
  1887. 0xda, 0xb8, 0xfc, 0x01, 0xd8, 0x10, 0x00, 0x00,
  1888. }