device.pb.go 66 KB

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