payGoods.pb.go 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: payGoods.proto
  3. package v1
  4. import proto "github.com/gogo/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "github.com/gogo/protobuf/gogoproto"
  8. import io "io"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
  18. type PayGoodsAddReq struct {
  19. // 平台
  20. Platform string `protobuf:"bytes,1,opt,name=platform,proto3" json:"platform,omitempty" form:"platform"`
  21. // 商品名称
  22. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty" form:"title" validate:"required"`
  23. // 商品类型 2 付费直播门票
  24. Type int64 `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty" form:"type" validate:"required"`
  25. // 商品价格(分)
  26. Price int64 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty" form:"price" validate:"required"`
  27. // 开始时间
  28. StartTime string `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty" form:"start_time" validate:"required"`
  29. // 结束时间
  30. EndTime string `protobuf:"bytes,6,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty" form:"end_time" validate:"required"`
  31. // ip限制,0不限制,1仅限大陆,2仅限港澳台,3大陆+港澳台
  32. IpLimit int64 `protobuf:"varint,7,opt,name=ip_limit,json=ipLimit,proto3" json:"ip_limit,omitempty" form:"ip_limit"`
  33. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  34. XXX_unrecognized []byte `json:"-"`
  35. XXX_sizecache int32 `json:"-"`
  36. }
  37. func (m *PayGoodsAddReq) Reset() { *m = PayGoodsAddReq{} }
  38. func (m *PayGoodsAddReq) String() string { return proto.CompactTextString(m) }
  39. func (*PayGoodsAddReq) ProtoMessage() {}
  40. func (*PayGoodsAddReq) Descriptor() ([]byte, []int) {
  41. return fileDescriptor_payGoods_e218bc978cecad93, []int{0}
  42. }
  43. func (m *PayGoodsAddReq) XXX_Unmarshal(b []byte) error {
  44. return m.Unmarshal(b)
  45. }
  46. func (m *PayGoodsAddReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  47. if deterministic {
  48. return xxx_messageInfo_PayGoodsAddReq.Marshal(b, m, deterministic)
  49. } else {
  50. b = b[:cap(b)]
  51. n, err := m.MarshalTo(b)
  52. if err != nil {
  53. return nil, err
  54. }
  55. return b[:n], nil
  56. }
  57. }
  58. func (dst *PayGoodsAddReq) XXX_Merge(src proto.Message) {
  59. xxx_messageInfo_PayGoodsAddReq.Merge(dst, src)
  60. }
  61. func (m *PayGoodsAddReq) XXX_Size() int {
  62. return m.Size()
  63. }
  64. func (m *PayGoodsAddReq) XXX_DiscardUnknown() {
  65. xxx_messageInfo_PayGoodsAddReq.DiscardUnknown(m)
  66. }
  67. var xxx_messageInfo_PayGoodsAddReq proto.InternalMessageInfo
  68. type PayGoodsAddResp struct {
  69. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  70. XXX_unrecognized []byte `json:"-"`
  71. XXX_sizecache int32 `json:"-"`
  72. }
  73. func (m *PayGoodsAddResp) Reset() { *m = PayGoodsAddResp{} }
  74. func (m *PayGoodsAddResp) String() string { return proto.CompactTextString(m) }
  75. func (*PayGoodsAddResp) ProtoMessage() {}
  76. func (*PayGoodsAddResp) Descriptor() ([]byte, []int) {
  77. return fileDescriptor_payGoods_e218bc978cecad93, []int{1}
  78. }
  79. func (m *PayGoodsAddResp) XXX_Unmarshal(b []byte) error {
  80. return m.Unmarshal(b)
  81. }
  82. func (m *PayGoodsAddResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  83. if deterministic {
  84. return xxx_messageInfo_PayGoodsAddResp.Marshal(b, m, deterministic)
  85. } else {
  86. b = b[:cap(b)]
  87. n, err := m.MarshalTo(b)
  88. if err != nil {
  89. return nil, err
  90. }
  91. return b[:n], nil
  92. }
  93. }
  94. func (dst *PayGoodsAddResp) XXX_Merge(src proto.Message) {
  95. xxx_messageInfo_PayGoodsAddResp.Merge(dst, src)
  96. }
  97. func (m *PayGoodsAddResp) XXX_Size() int {
  98. return m.Size()
  99. }
  100. func (m *PayGoodsAddResp) XXX_DiscardUnknown() {
  101. xxx_messageInfo_PayGoodsAddResp.DiscardUnknown(m)
  102. }
  103. var xxx_messageInfo_PayGoodsAddResp proto.InternalMessageInfo
  104. type PayGoodsUpdateReq struct {
  105. // 购票id
  106. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty" form:"id"`
  107. // 平台
  108. Platform string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty" form:"platform"`
  109. // 商品名称
  110. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty" form:"title"`
  111. // 商品类型 2 付费直播门票
  112. Type int64 `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty" form:"type"`
  113. // 商品价格(分)
  114. Price int64 `protobuf:"varint,5,opt,name=price,proto3" json:"price,omitempty" form:"price"`
  115. // 开始时间
  116. StartTime string `protobuf:"bytes,6,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty" form:"start_time"`
  117. // 结束时间
  118. EndTime string `protobuf:"bytes,7,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty" form:"end_time"`
  119. // ip限制,0不限制,1仅限大陆,2仅限港澳台,3大陆+港澳台
  120. IpLimit int64 `protobuf:"varint,8,opt,name=ip_limit,json=ipLimit,proto3" json:"ip_limit,omitempty" form:"ip_limit"`
  121. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  122. XXX_unrecognized []byte `json:"-"`
  123. XXX_sizecache int32 `json:"-"`
  124. }
  125. func (m *PayGoodsUpdateReq) Reset() { *m = PayGoodsUpdateReq{} }
  126. func (m *PayGoodsUpdateReq) String() string { return proto.CompactTextString(m) }
  127. func (*PayGoodsUpdateReq) ProtoMessage() {}
  128. func (*PayGoodsUpdateReq) Descriptor() ([]byte, []int) {
  129. return fileDescriptor_payGoods_e218bc978cecad93, []int{2}
  130. }
  131. func (m *PayGoodsUpdateReq) XXX_Unmarshal(b []byte) error {
  132. return m.Unmarshal(b)
  133. }
  134. func (m *PayGoodsUpdateReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  135. if deterministic {
  136. return xxx_messageInfo_PayGoodsUpdateReq.Marshal(b, m, deterministic)
  137. } else {
  138. b = b[:cap(b)]
  139. n, err := m.MarshalTo(b)
  140. if err != nil {
  141. return nil, err
  142. }
  143. return b[:n], nil
  144. }
  145. }
  146. func (dst *PayGoodsUpdateReq) XXX_Merge(src proto.Message) {
  147. xxx_messageInfo_PayGoodsUpdateReq.Merge(dst, src)
  148. }
  149. func (m *PayGoodsUpdateReq) XXX_Size() int {
  150. return m.Size()
  151. }
  152. func (m *PayGoodsUpdateReq) XXX_DiscardUnknown() {
  153. xxx_messageInfo_PayGoodsUpdateReq.DiscardUnknown(m)
  154. }
  155. var xxx_messageInfo_PayGoodsUpdateReq proto.InternalMessageInfo
  156. type PayGoodsUpdateResp struct {
  157. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  158. XXX_unrecognized []byte `json:"-"`
  159. XXX_sizecache int32 `json:"-"`
  160. }
  161. func (m *PayGoodsUpdateResp) Reset() { *m = PayGoodsUpdateResp{} }
  162. func (m *PayGoodsUpdateResp) String() string { return proto.CompactTextString(m) }
  163. func (*PayGoodsUpdateResp) ProtoMessage() {}
  164. func (*PayGoodsUpdateResp) Descriptor() ([]byte, []int) {
  165. return fileDescriptor_payGoods_e218bc978cecad93, []int{3}
  166. }
  167. func (m *PayGoodsUpdateResp) XXX_Unmarshal(b []byte) error {
  168. return m.Unmarshal(b)
  169. }
  170. func (m *PayGoodsUpdateResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  171. if deterministic {
  172. return xxx_messageInfo_PayGoodsUpdateResp.Marshal(b, m, deterministic)
  173. } else {
  174. b = b[:cap(b)]
  175. n, err := m.MarshalTo(b)
  176. if err != nil {
  177. return nil, err
  178. }
  179. return b[:n], nil
  180. }
  181. }
  182. func (dst *PayGoodsUpdateResp) XXX_Merge(src proto.Message) {
  183. xxx_messageInfo_PayGoodsUpdateResp.Merge(dst, src)
  184. }
  185. func (m *PayGoodsUpdateResp) XXX_Size() int {
  186. return m.Size()
  187. }
  188. func (m *PayGoodsUpdateResp) XXX_DiscardUnknown() {
  189. xxx_messageInfo_PayGoodsUpdateResp.DiscardUnknown(m)
  190. }
  191. var xxx_messageInfo_PayGoodsUpdateResp proto.InternalMessageInfo
  192. type PayGoodsGetListReq struct {
  193. // 购票id
  194. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty" form:"id"`
  195. // 平台
  196. Platform string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty" form:"platform"`
  197. // 商品名称
  198. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty" form:"title"`
  199. // 商品类型 2 付费直播门票
  200. Type int64 `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty" form:"type"`
  201. // ip限制,0不限制,1仅限大陆,2仅限港澳台,3大陆+港澳台
  202. IpLimit int64 `protobuf:"varint,5,opt,name=ip_limit,json=ipLimit,proto3" json:"ip_limit,omitempty" form:"ip_limit"`
  203. // 页号,0开始
  204. PageNum int64 `protobuf:"varint,6,opt,name=page_num,json=pageNum,proto3" json:"page_num,omitempty" form:"page_num"`
  205. // 每页个数
  206. PageSize int64 `protobuf:"varint,7,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty" form:"page_size"`
  207. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  208. XXX_unrecognized []byte `json:"-"`
  209. XXX_sizecache int32 `json:"-"`
  210. }
  211. func (m *PayGoodsGetListReq) Reset() { *m = PayGoodsGetListReq{} }
  212. func (m *PayGoodsGetListReq) String() string { return proto.CompactTextString(m) }
  213. func (*PayGoodsGetListReq) ProtoMessage() {}
  214. func (*PayGoodsGetListReq) Descriptor() ([]byte, []int) {
  215. return fileDescriptor_payGoods_e218bc978cecad93, []int{4}
  216. }
  217. func (m *PayGoodsGetListReq) XXX_Unmarshal(b []byte) error {
  218. return m.Unmarshal(b)
  219. }
  220. func (m *PayGoodsGetListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  221. if deterministic {
  222. return xxx_messageInfo_PayGoodsGetListReq.Marshal(b, m, deterministic)
  223. } else {
  224. b = b[:cap(b)]
  225. n, err := m.MarshalTo(b)
  226. if err != nil {
  227. return nil, err
  228. }
  229. return b[:n], nil
  230. }
  231. }
  232. func (dst *PayGoodsGetListReq) XXX_Merge(src proto.Message) {
  233. xxx_messageInfo_PayGoodsGetListReq.Merge(dst, src)
  234. }
  235. func (m *PayGoodsGetListReq) XXX_Size() int {
  236. return m.Size()
  237. }
  238. func (m *PayGoodsGetListReq) XXX_DiscardUnknown() {
  239. xxx_messageInfo_PayGoodsGetListReq.DiscardUnknown(m)
  240. }
  241. var xxx_messageInfo_PayGoodsGetListReq proto.InternalMessageInfo
  242. type PayGoodsGetListResp struct {
  243. //
  244. PageInfo *PayGoodsGetListResp_PageInfo `protobuf:"bytes,1,opt,name=page_info,json=pageInfo" json:"page_info"`
  245. //
  246. GoodsInfo []*PayGoodsGetListResp_GoodsInfo `protobuf:"bytes,2,rep,name=goods_info,json=goodsInfo" json:"goods_info"`
  247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  248. XXX_unrecognized []byte `json:"-"`
  249. XXX_sizecache int32 `json:"-"`
  250. }
  251. func (m *PayGoodsGetListResp) Reset() { *m = PayGoodsGetListResp{} }
  252. func (m *PayGoodsGetListResp) String() string { return proto.CompactTextString(m) }
  253. func (*PayGoodsGetListResp) ProtoMessage() {}
  254. func (*PayGoodsGetListResp) Descriptor() ([]byte, []int) {
  255. return fileDescriptor_payGoods_e218bc978cecad93, []int{5}
  256. }
  257. func (m *PayGoodsGetListResp) XXX_Unmarshal(b []byte) error {
  258. return m.Unmarshal(b)
  259. }
  260. func (m *PayGoodsGetListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  261. if deterministic {
  262. return xxx_messageInfo_PayGoodsGetListResp.Marshal(b, m, deterministic)
  263. } else {
  264. b = b[:cap(b)]
  265. n, err := m.MarshalTo(b)
  266. if err != nil {
  267. return nil, err
  268. }
  269. return b[:n], nil
  270. }
  271. }
  272. func (dst *PayGoodsGetListResp) XXX_Merge(src proto.Message) {
  273. xxx_messageInfo_PayGoodsGetListResp.Merge(dst, src)
  274. }
  275. func (m *PayGoodsGetListResp) XXX_Size() int {
  276. return m.Size()
  277. }
  278. func (m *PayGoodsGetListResp) XXX_DiscardUnknown() {
  279. xxx_messageInfo_PayGoodsGetListResp.DiscardUnknown(m)
  280. }
  281. var xxx_messageInfo_PayGoodsGetListResp proto.InternalMessageInfo
  282. type PayGoodsGetListResp_PageInfo struct {
  283. // 记录总数
  284. TotalCount int64 `protobuf:"varint,1,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
  285. // 当前页号
  286. PageNum int64 `protobuf:"varint,2,opt,name=page_num,json=pageNum,proto3" json:"page_num"`
  287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  288. XXX_unrecognized []byte `json:"-"`
  289. XXX_sizecache int32 `json:"-"`
  290. }
  291. func (m *PayGoodsGetListResp_PageInfo) Reset() { *m = PayGoodsGetListResp_PageInfo{} }
  292. func (m *PayGoodsGetListResp_PageInfo) String() string { return proto.CompactTextString(m) }
  293. func (*PayGoodsGetListResp_PageInfo) ProtoMessage() {}
  294. func (*PayGoodsGetListResp_PageInfo) Descriptor() ([]byte, []int) {
  295. return fileDescriptor_payGoods_e218bc978cecad93, []int{5, 0}
  296. }
  297. func (m *PayGoodsGetListResp_PageInfo) XXX_Unmarshal(b []byte) error {
  298. return m.Unmarshal(b)
  299. }
  300. func (m *PayGoodsGetListResp_PageInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  301. if deterministic {
  302. return xxx_messageInfo_PayGoodsGetListResp_PageInfo.Marshal(b, m, deterministic)
  303. } else {
  304. b = b[:cap(b)]
  305. n, err := m.MarshalTo(b)
  306. if err != nil {
  307. return nil, err
  308. }
  309. return b[:n], nil
  310. }
  311. }
  312. func (dst *PayGoodsGetListResp_PageInfo) XXX_Merge(src proto.Message) {
  313. xxx_messageInfo_PayGoodsGetListResp_PageInfo.Merge(dst, src)
  314. }
  315. func (m *PayGoodsGetListResp_PageInfo) XXX_Size() int {
  316. return m.Size()
  317. }
  318. func (m *PayGoodsGetListResp_PageInfo) XXX_DiscardUnknown() {
  319. xxx_messageInfo_PayGoodsGetListResp_PageInfo.DiscardUnknown(m)
  320. }
  321. var xxx_messageInfo_PayGoodsGetListResp_PageInfo proto.InternalMessageInfo
  322. type PayGoodsGetListResp_GoodsInfo struct {
  323. // 购票id
  324. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  325. // 标题
  326. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  327. // 平台
  328. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform"`
  329. // 类型,2为付费直播
  330. Type int64 `protobuf:"varint,4,opt,name=type,proto3" json:"type"`
  331. // 价格,分
  332. Price int64 `protobuf:"varint,5,opt,name=price,proto3" json:"price"`
  333. // 开始购票时间
  334. StartTime string `protobuf:"bytes,6,opt,name=start_time,json=startTime,proto3" json:"start_time"`
  335. // 结束购票时间
  336. EndTime string `protobuf:"bytes,7,opt,name=end_time,json=endTime,proto3" json:"end_time"`
  337. // ip限制
  338. IpLimit int64 `protobuf:"varint,8,opt,name=ip_limit,json=ipLimit,proto3" json:"ip_limit"`
  339. // 购票状态,0关闭,1购票中,2未开始
  340. Status int64 `protobuf:"varint,9,opt,name=status,proto3" json:"status"`
  341. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  342. XXX_unrecognized []byte `json:"-"`
  343. XXX_sizecache int32 `json:"-"`
  344. }
  345. func (m *PayGoodsGetListResp_GoodsInfo) Reset() { *m = PayGoodsGetListResp_GoodsInfo{} }
  346. func (m *PayGoodsGetListResp_GoodsInfo) String() string { return proto.CompactTextString(m) }
  347. func (*PayGoodsGetListResp_GoodsInfo) ProtoMessage() {}
  348. func (*PayGoodsGetListResp_GoodsInfo) Descriptor() ([]byte, []int) {
  349. return fileDescriptor_payGoods_e218bc978cecad93, []int{5, 1}
  350. }
  351. func (m *PayGoodsGetListResp_GoodsInfo) XXX_Unmarshal(b []byte) error {
  352. return m.Unmarshal(b)
  353. }
  354. func (m *PayGoodsGetListResp_GoodsInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  355. if deterministic {
  356. return xxx_messageInfo_PayGoodsGetListResp_GoodsInfo.Marshal(b, m, deterministic)
  357. } else {
  358. b = b[:cap(b)]
  359. n, err := m.MarshalTo(b)
  360. if err != nil {
  361. return nil, err
  362. }
  363. return b[:n], nil
  364. }
  365. }
  366. func (dst *PayGoodsGetListResp_GoodsInfo) XXX_Merge(src proto.Message) {
  367. xxx_messageInfo_PayGoodsGetListResp_GoodsInfo.Merge(dst, src)
  368. }
  369. func (m *PayGoodsGetListResp_GoodsInfo) XXX_Size() int {
  370. return m.Size()
  371. }
  372. func (m *PayGoodsGetListResp_GoodsInfo) XXX_DiscardUnknown() {
  373. xxx_messageInfo_PayGoodsGetListResp_GoodsInfo.DiscardUnknown(m)
  374. }
  375. var xxx_messageInfo_PayGoodsGetListResp_GoodsInfo proto.InternalMessageInfo
  376. type PayGoodsCloseReq struct {
  377. // 购票id
  378. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty" form:"id" validate:"required"`
  379. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  380. XXX_unrecognized []byte `json:"-"`
  381. XXX_sizecache int32 `json:"-"`
  382. }
  383. func (m *PayGoodsCloseReq) Reset() { *m = PayGoodsCloseReq{} }
  384. func (m *PayGoodsCloseReq) String() string { return proto.CompactTextString(m) }
  385. func (*PayGoodsCloseReq) ProtoMessage() {}
  386. func (*PayGoodsCloseReq) Descriptor() ([]byte, []int) {
  387. return fileDescriptor_payGoods_e218bc978cecad93, []int{6}
  388. }
  389. func (m *PayGoodsCloseReq) XXX_Unmarshal(b []byte) error {
  390. return m.Unmarshal(b)
  391. }
  392. func (m *PayGoodsCloseReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  393. if deterministic {
  394. return xxx_messageInfo_PayGoodsCloseReq.Marshal(b, m, deterministic)
  395. } else {
  396. b = b[:cap(b)]
  397. n, err := m.MarshalTo(b)
  398. if err != nil {
  399. return nil, err
  400. }
  401. return b[:n], nil
  402. }
  403. }
  404. func (dst *PayGoodsCloseReq) XXX_Merge(src proto.Message) {
  405. xxx_messageInfo_PayGoodsCloseReq.Merge(dst, src)
  406. }
  407. func (m *PayGoodsCloseReq) XXX_Size() int {
  408. return m.Size()
  409. }
  410. func (m *PayGoodsCloseReq) XXX_DiscardUnknown() {
  411. xxx_messageInfo_PayGoodsCloseReq.DiscardUnknown(m)
  412. }
  413. var xxx_messageInfo_PayGoodsCloseReq proto.InternalMessageInfo
  414. type PayGoodsCloseResp struct {
  415. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  416. XXX_unrecognized []byte `json:"-"`
  417. XXX_sizecache int32 `json:"-"`
  418. }
  419. func (m *PayGoodsCloseResp) Reset() { *m = PayGoodsCloseResp{} }
  420. func (m *PayGoodsCloseResp) String() string { return proto.CompactTextString(m) }
  421. func (*PayGoodsCloseResp) ProtoMessage() {}
  422. func (*PayGoodsCloseResp) Descriptor() ([]byte, []int) {
  423. return fileDescriptor_payGoods_e218bc978cecad93, []int{7}
  424. }
  425. func (m *PayGoodsCloseResp) XXX_Unmarshal(b []byte) error {
  426. return m.Unmarshal(b)
  427. }
  428. func (m *PayGoodsCloseResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  429. if deterministic {
  430. return xxx_messageInfo_PayGoodsCloseResp.Marshal(b, m, deterministic)
  431. } else {
  432. b = b[:cap(b)]
  433. n, err := m.MarshalTo(b)
  434. if err != nil {
  435. return nil, err
  436. }
  437. return b[:n], nil
  438. }
  439. }
  440. func (dst *PayGoodsCloseResp) XXX_Merge(src proto.Message) {
  441. xxx_messageInfo_PayGoodsCloseResp.Merge(dst, src)
  442. }
  443. func (m *PayGoodsCloseResp) XXX_Size() int {
  444. return m.Size()
  445. }
  446. func (m *PayGoodsCloseResp) XXX_DiscardUnknown() {
  447. xxx_messageInfo_PayGoodsCloseResp.DiscardUnknown(m)
  448. }
  449. var xxx_messageInfo_PayGoodsCloseResp proto.InternalMessageInfo
  450. type PayGoodsOpenReq struct {
  451. // 购票id
  452. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty" form:"id" validate:"required"`
  453. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  454. XXX_unrecognized []byte `json:"-"`
  455. XXX_sizecache int32 `json:"-"`
  456. }
  457. func (m *PayGoodsOpenReq) Reset() { *m = PayGoodsOpenReq{} }
  458. func (m *PayGoodsOpenReq) String() string { return proto.CompactTextString(m) }
  459. func (*PayGoodsOpenReq) ProtoMessage() {}
  460. func (*PayGoodsOpenReq) Descriptor() ([]byte, []int) {
  461. return fileDescriptor_payGoods_e218bc978cecad93, []int{8}
  462. }
  463. func (m *PayGoodsOpenReq) XXX_Unmarshal(b []byte) error {
  464. return m.Unmarshal(b)
  465. }
  466. func (m *PayGoodsOpenReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  467. if deterministic {
  468. return xxx_messageInfo_PayGoodsOpenReq.Marshal(b, m, deterministic)
  469. } else {
  470. b = b[:cap(b)]
  471. n, err := m.MarshalTo(b)
  472. if err != nil {
  473. return nil, err
  474. }
  475. return b[:n], nil
  476. }
  477. }
  478. func (dst *PayGoodsOpenReq) XXX_Merge(src proto.Message) {
  479. xxx_messageInfo_PayGoodsOpenReq.Merge(dst, src)
  480. }
  481. func (m *PayGoodsOpenReq) XXX_Size() int {
  482. return m.Size()
  483. }
  484. func (m *PayGoodsOpenReq) XXX_DiscardUnknown() {
  485. xxx_messageInfo_PayGoodsOpenReq.DiscardUnknown(m)
  486. }
  487. var xxx_messageInfo_PayGoodsOpenReq proto.InternalMessageInfo
  488. type PayGoodsOpenResp struct {
  489. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  490. XXX_unrecognized []byte `json:"-"`
  491. XXX_sizecache int32 `json:"-"`
  492. }
  493. func (m *PayGoodsOpenResp) Reset() { *m = PayGoodsOpenResp{} }
  494. func (m *PayGoodsOpenResp) String() string { return proto.CompactTextString(m) }
  495. func (*PayGoodsOpenResp) ProtoMessage() {}
  496. func (*PayGoodsOpenResp) Descriptor() ([]byte, []int) {
  497. return fileDescriptor_payGoods_e218bc978cecad93, []int{9}
  498. }
  499. func (m *PayGoodsOpenResp) XXX_Unmarshal(b []byte) error {
  500. return m.Unmarshal(b)
  501. }
  502. func (m *PayGoodsOpenResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  503. if deterministic {
  504. return xxx_messageInfo_PayGoodsOpenResp.Marshal(b, m, deterministic)
  505. } else {
  506. b = b[:cap(b)]
  507. n, err := m.MarshalTo(b)
  508. if err != nil {
  509. return nil, err
  510. }
  511. return b[:n], nil
  512. }
  513. }
  514. func (dst *PayGoodsOpenResp) XXX_Merge(src proto.Message) {
  515. xxx_messageInfo_PayGoodsOpenResp.Merge(dst, src)
  516. }
  517. func (m *PayGoodsOpenResp) XXX_Size() int {
  518. return m.Size()
  519. }
  520. func (m *PayGoodsOpenResp) XXX_DiscardUnknown() {
  521. xxx_messageInfo_PayGoodsOpenResp.DiscardUnknown(m)
  522. }
  523. var xxx_messageInfo_PayGoodsOpenResp proto.InternalMessageInfo
  524. func init() {
  525. proto.RegisterType((*PayGoodsAddReq)(nil), "live.liveadmin.v1.PayGoodsAddReq")
  526. proto.RegisterType((*PayGoodsAddResp)(nil), "live.liveadmin.v1.PayGoodsAddResp")
  527. proto.RegisterType((*PayGoodsUpdateReq)(nil), "live.liveadmin.v1.PayGoodsUpdateReq")
  528. proto.RegisterType((*PayGoodsUpdateResp)(nil), "live.liveadmin.v1.PayGoodsUpdateResp")
  529. proto.RegisterType((*PayGoodsGetListReq)(nil), "live.liveadmin.v1.PayGoodsGetListReq")
  530. proto.RegisterType((*PayGoodsGetListResp)(nil), "live.liveadmin.v1.PayGoodsGetListResp")
  531. proto.RegisterType((*PayGoodsGetListResp_PageInfo)(nil), "live.liveadmin.v1.PayGoodsGetListResp.PageInfo")
  532. proto.RegisterType((*PayGoodsGetListResp_GoodsInfo)(nil), "live.liveadmin.v1.PayGoodsGetListResp.GoodsInfo")
  533. proto.RegisterType((*PayGoodsCloseReq)(nil), "live.liveadmin.v1.PayGoodsCloseReq")
  534. proto.RegisterType((*PayGoodsCloseResp)(nil), "live.liveadmin.v1.PayGoodsCloseResp")
  535. proto.RegisterType((*PayGoodsOpenReq)(nil), "live.liveadmin.v1.PayGoodsOpenReq")
  536. proto.RegisterType((*PayGoodsOpenResp)(nil), "live.liveadmin.v1.PayGoodsOpenResp")
  537. }
  538. func (m *PayGoodsAddReq) Marshal() (dAtA []byte, err error) {
  539. size := m.Size()
  540. dAtA = make([]byte, size)
  541. n, err := m.MarshalTo(dAtA)
  542. if err != nil {
  543. return nil, err
  544. }
  545. return dAtA[:n], nil
  546. }
  547. func (m *PayGoodsAddReq) MarshalTo(dAtA []byte) (int, error) {
  548. var i int
  549. _ = i
  550. var l int
  551. _ = l
  552. if len(m.Platform) > 0 {
  553. dAtA[i] = 0xa
  554. i++
  555. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Platform)))
  556. i += copy(dAtA[i:], m.Platform)
  557. }
  558. if len(m.Title) > 0 {
  559. dAtA[i] = 0x12
  560. i++
  561. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Title)))
  562. i += copy(dAtA[i:], m.Title)
  563. }
  564. if m.Type != 0 {
  565. dAtA[i] = 0x18
  566. i++
  567. i = encodeVarintPayGoods(dAtA, i, uint64(m.Type))
  568. }
  569. if m.Price != 0 {
  570. dAtA[i] = 0x20
  571. i++
  572. i = encodeVarintPayGoods(dAtA, i, uint64(m.Price))
  573. }
  574. if len(m.StartTime) > 0 {
  575. dAtA[i] = 0x2a
  576. i++
  577. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.StartTime)))
  578. i += copy(dAtA[i:], m.StartTime)
  579. }
  580. if len(m.EndTime) > 0 {
  581. dAtA[i] = 0x32
  582. i++
  583. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.EndTime)))
  584. i += copy(dAtA[i:], m.EndTime)
  585. }
  586. if m.IpLimit != 0 {
  587. dAtA[i] = 0x38
  588. i++
  589. i = encodeVarintPayGoods(dAtA, i, uint64(m.IpLimit))
  590. }
  591. if m.XXX_unrecognized != nil {
  592. i += copy(dAtA[i:], m.XXX_unrecognized)
  593. }
  594. return i, nil
  595. }
  596. func (m *PayGoodsAddResp) Marshal() (dAtA []byte, err error) {
  597. size := m.Size()
  598. dAtA = make([]byte, size)
  599. n, err := m.MarshalTo(dAtA)
  600. if err != nil {
  601. return nil, err
  602. }
  603. return dAtA[:n], nil
  604. }
  605. func (m *PayGoodsAddResp) MarshalTo(dAtA []byte) (int, error) {
  606. var i int
  607. _ = i
  608. var l int
  609. _ = l
  610. if m.XXX_unrecognized != nil {
  611. i += copy(dAtA[i:], m.XXX_unrecognized)
  612. }
  613. return i, nil
  614. }
  615. func (m *PayGoodsUpdateReq) Marshal() (dAtA []byte, err error) {
  616. size := m.Size()
  617. dAtA = make([]byte, size)
  618. n, err := m.MarshalTo(dAtA)
  619. if err != nil {
  620. return nil, err
  621. }
  622. return dAtA[:n], nil
  623. }
  624. func (m *PayGoodsUpdateReq) MarshalTo(dAtA []byte) (int, error) {
  625. var i int
  626. _ = i
  627. var l int
  628. _ = l
  629. if m.Id != 0 {
  630. dAtA[i] = 0x8
  631. i++
  632. i = encodeVarintPayGoods(dAtA, i, uint64(m.Id))
  633. }
  634. if len(m.Platform) > 0 {
  635. dAtA[i] = 0x12
  636. i++
  637. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Platform)))
  638. i += copy(dAtA[i:], m.Platform)
  639. }
  640. if len(m.Title) > 0 {
  641. dAtA[i] = 0x1a
  642. i++
  643. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Title)))
  644. i += copy(dAtA[i:], m.Title)
  645. }
  646. if m.Type != 0 {
  647. dAtA[i] = 0x20
  648. i++
  649. i = encodeVarintPayGoods(dAtA, i, uint64(m.Type))
  650. }
  651. if m.Price != 0 {
  652. dAtA[i] = 0x28
  653. i++
  654. i = encodeVarintPayGoods(dAtA, i, uint64(m.Price))
  655. }
  656. if len(m.StartTime) > 0 {
  657. dAtA[i] = 0x32
  658. i++
  659. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.StartTime)))
  660. i += copy(dAtA[i:], m.StartTime)
  661. }
  662. if len(m.EndTime) > 0 {
  663. dAtA[i] = 0x3a
  664. i++
  665. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.EndTime)))
  666. i += copy(dAtA[i:], m.EndTime)
  667. }
  668. if m.IpLimit != 0 {
  669. dAtA[i] = 0x40
  670. i++
  671. i = encodeVarintPayGoods(dAtA, i, uint64(m.IpLimit))
  672. }
  673. if m.XXX_unrecognized != nil {
  674. i += copy(dAtA[i:], m.XXX_unrecognized)
  675. }
  676. return i, nil
  677. }
  678. func (m *PayGoodsUpdateResp) Marshal() (dAtA []byte, err error) {
  679. size := m.Size()
  680. dAtA = make([]byte, size)
  681. n, err := m.MarshalTo(dAtA)
  682. if err != nil {
  683. return nil, err
  684. }
  685. return dAtA[:n], nil
  686. }
  687. func (m *PayGoodsUpdateResp) MarshalTo(dAtA []byte) (int, error) {
  688. var i int
  689. _ = i
  690. var l int
  691. _ = l
  692. if m.XXX_unrecognized != nil {
  693. i += copy(dAtA[i:], m.XXX_unrecognized)
  694. }
  695. return i, nil
  696. }
  697. func (m *PayGoodsGetListReq) Marshal() (dAtA []byte, err error) {
  698. size := m.Size()
  699. dAtA = make([]byte, size)
  700. n, err := m.MarshalTo(dAtA)
  701. if err != nil {
  702. return nil, err
  703. }
  704. return dAtA[:n], nil
  705. }
  706. func (m *PayGoodsGetListReq) MarshalTo(dAtA []byte) (int, error) {
  707. var i int
  708. _ = i
  709. var l int
  710. _ = l
  711. if m.Id != 0 {
  712. dAtA[i] = 0x8
  713. i++
  714. i = encodeVarintPayGoods(dAtA, i, uint64(m.Id))
  715. }
  716. if len(m.Platform) > 0 {
  717. dAtA[i] = 0x12
  718. i++
  719. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Platform)))
  720. i += copy(dAtA[i:], m.Platform)
  721. }
  722. if len(m.Title) > 0 {
  723. dAtA[i] = 0x1a
  724. i++
  725. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Title)))
  726. i += copy(dAtA[i:], m.Title)
  727. }
  728. if m.Type != 0 {
  729. dAtA[i] = 0x20
  730. i++
  731. i = encodeVarintPayGoods(dAtA, i, uint64(m.Type))
  732. }
  733. if m.IpLimit != 0 {
  734. dAtA[i] = 0x28
  735. i++
  736. i = encodeVarintPayGoods(dAtA, i, uint64(m.IpLimit))
  737. }
  738. if m.PageNum != 0 {
  739. dAtA[i] = 0x30
  740. i++
  741. i = encodeVarintPayGoods(dAtA, i, uint64(m.PageNum))
  742. }
  743. if m.PageSize != 0 {
  744. dAtA[i] = 0x38
  745. i++
  746. i = encodeVarintPayGoods(dAtA, i, uint64(m.PageSize))
  747. }
  748. if m.XXX_unrecognized != nil {
  749. i += copy(dAtA[i:], m.XXX_unrecognized)
  750. }
  751. return i, nil
  752. }
  753. func (m *PayGoodsGetListResp) Marshal() (dAtA []byte, err error) {
  754. size := m.Size()
  755. dAtA = make([]byte, size)
  756. n, err := m.MarshalTo(dAtA)
  757. if err != nil {
  758. return nil, err
  759. }
  760. return dAtA[:n], nil
  761. }
  762. func (m *PayGoodsGetListResp) MarshalTo(dAtA []byte) (int, error) {
  763. var i int
  764. _ = i
  765. var l int
  766. _ = l
  767. if m.PageInfo != nil {
  768. dAtA[i] = 0xa
  769. i++
  770. i = encodeVarintPayGoods(dAtA, i, uint64(m.PageInfo.Size()))
  771. n1, err := m.PageInfo.MarshalTo(dAtA[i:])
  772. if err != nil {
  773. return 0, err
  774. }
  775. i += n1
  776. }
  777. if len(m.GoodsInfo) > 0 {
  778. for _, msg := range m.GoodsInfo {
  779. dAtA[i] = 0x12
  780. i++
  781. i = encodeVarintPayGoods(dAtA, i, uint64(msg.Size()))
  782. n, err := msg.MarshalTo(dAtA[i:])
  783. if err != nil {
  784. return 0, err
  785. }
  786. i += n
  787. }
  788. }
  789. if m.XXX_unrecognized != nil {
  790. i += copy(dAtA[i:], m.XXX_unrecognized)
  791. }
  792. return i, nil
  793. }
  794. func (m *PayGoodsGetListResp_PageInfo) Marshal() (dAtA []byte, err error) {
  795. size := m.Size()
  796. dAtA = make([]byte, size)
  797. n, err := m.MarshalTo(dAtA)
  798. if err != nil {
  799. return nil, err
  800. }
  801. return dAtA[:n], nil
  802. }
  803. func (m *PayGoodsGetListResp_PageInfo) MarshalTo(dAtA []byte) (int, error) {
  804. var i int
  805. _ = i
  806. var l int
  807. _ = l
  808. if m.TotalCount != 0 {
  809. dAtA[i] = 0x8
  810. i++
  811. i = encodeVarintPayGoods(dAtA, i, uint64(m.TotalCount))
  812. }
  813. if m.PageNum != 0 {
  814. dAtA[i] = 0x10
  815. i++
  816. i = encodeVarintPayGoods(dAtA, i, uint64(m.PageNum))
  817. }
  818. if m.XXX_unrecognized != nil {
  819. i += copy(dAtA[i:], m.XXX_unrecognized)
  820. }
  821. return i, nil
  822. }
  823. func (m *PayGoodsGetListResp_GoodsInfo) Marshal() (dAtA []byte, err error) {
  824. size := m.Size()
  825. dAtA = make([]byte, size)
  826. n, err := m.MarshalTo(dAtA)
  827. if err != nil {
  828. return nil, err
  829. }
  830. return dAtA[:n], nil
  831. }
  832. func (m *PayGoodsGetListResp_GoodsInfo) MarshalTo(dAtA []byte) (int, error) {
  833. var i int
  834. _ = i
  835. var l int
  836. _ = l
  837. if m.Id != 0 {
  838. dAtA[i] = 0x8
  839. i++
  840. i = encodeVarintPayGoods(dAtA, i, uint64(m.Id))
  841. }
  842. if len(m.Title) > 0 {
  843. dAtA[i] = 0x12
  844. i++
  845. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Title)))
  846. i += copy(dAtA[i:], m.Title)
  847. }
  848. if len(m.Platform) > 0 {
  849. dAtA[i] = 0x1a
  850. i++
  851. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.Platform)))
  852. i += copy(dAtA[i:], m.Platform)
  853. }
  854. if m.Type != 0 {
  855. dAtA[i] = 0x20
  856. i++
  857. i = encodeVarintPayGoods(dAtA, i, uint64(m.Type))
  858. }
  859. if m.Price != 0 {
  860. dAtA[i] = 0x28
  861. i++
  862. i = encodeVarintPayGoods(dAtA, i, uint64(m.Price))
  863. }
  864. if len(m.StartTime) > 0 {
  865. dAtA[i] = 0x32
  866. i++
  867. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.StartTime)))
  868. i += copy(dAtA[i:], m.StartTime)
  869. }
  870. if len(m.EndTime) > 0 {
  871. dAtA[i] = 0x3a
  872. i++
  873. i = encodeVarintPayGoods(dAtA, i, uint64(len(m.EndTime)))
  874. i += copy(dAtA[i:], m.EndTime)
  875. }
  876. if m.IpLimit != 0 {
  877. dAtA[i] = 0x40
  878. i++
  879. i = encodeVarintPayGoods(dAtA, i, uint64(m.IpLimit))
  880. }
  881. if m.Status != 0 {
  882. dAtA[i] = 0x48
  883. i++
  884. i = encodeVarintPayGoods(dAtA, i, uint64(m.Status))
  885. }
  886. if m.XXX_unrecognized != nil {
  887. i += copy(dAtA[i:], m.XXX_unrecognized)
  888. }
  889. return i, nil
  890. }
  891. func (m *PayGoodsCloseReq) Marshal() (dAtA []byte, err error) {
  892. size := m.Size()
  893. dAtA = make([]byte, size)
  894. n, err := m.MarshalTo(dAtA)
  895. if err != nil {
  896. return nil, err
  897. }
  898. return dAtA[:n], nil
  899. }
  900. func (m *PayGoodsCloseReq) MarshalTo(dAtA []byte) (int, error) {
  901. var i int
  902. _ = i
  903. var l int
  904. _ = l
  905. if m.Id != 0 {
  906. dAtA[i] = 0x8
  907. i++
  908. i = encodeVarintPayGoods(dAtA, i, uint64(m.Id))
  909. }
  910. if m.XXX_unrecognized != nil {
  911. i += copy(dAtA[i:], m.XXX_unrecognized)
  912. }
  913. return i, nil
  914. }
  915. func (m *PayGoodsCloseResp) Marshal() (dAtA []byte, err error) {
  916. size := m.Size()
  917. dAtA = make([]byte, size)
  918. n, err := m.MarshalTo(dAtA)
  919. if err != nil {
  920. return nil, err
  921. }
  922. return dAtA[:n], nil
  923. }
  924. func (m *PayGoodsCloseResp) MarshalTo(dAtA []byte) (int, error) {
  925. var i int
  926. _ = i
  927. var l int
  928. _ = l
  929. if m.XXX_unrecognized != nil {
  930. i += copy(dAtA[i:], m.XXX_unrecognized)
  931. }
  932. return i, nil
  933. }
  934. func (m *PayGoodsOpenReq) Marshal() (dAtA []byte, err error) {
  935. size := m.Size()
  936. dAtA = make([]byte, size)
  937. n, err := m.MarshalTo(dAtA)
  938. if err != nil {
  939. return nil, err
  940. }
  941. return dAtA[:n], nil
  942. }
  943. func (m *PayGoodsOpenReq) MarshalTo(dAtA []byte) (int, error) {
  944. var i int
  945. _ = i
  946. var l int
  947. _ = l
  948. if m.Id != 0 {
  949. dAtA[i] = 0x8
  950. i++
  951. i = encodeVarintPayGoods(dAtA, i, uint64(m.Id))
  952. }
  953. if m.XXX_unrecognized != nil {
  954. i += copy(dAtA[i:], m.XXX_unrecognized)
  955. }
  956. return i, nil
  957. }
  958. func (m *PayGoodsOpenResp) Marshal() (dAtA []byte, err error) {
  959. size := m.Size()
  960. dAtA = make([]byte, size)
  961. n, err := m.MarshalTo(dAtA)
  962. if err != nil {
  963. return nil, err
  964. }
  965. return dAtA[:n], nil
  966. }
  967. func (m *PayGoodsOpenResp) MarshalTo(dAtA []byte) (int, error) {
  968. var i int
  969. _ = i
  970. var l int
  971. _ = l
  972. if m.XXX_unrecognized != nil {
  973. i += copy(dAtA[i:], m.XXX_unrecognized)
  974. }
  975. return i, nil
  976. }
  977. func encodeVarintPayGoods(dAtA []byte, offset int, v uint64) int {
  978. for v >= 1<<7 {
  979. dAtA[offset] = uint8(v&0x7f | 0x80)
  980. v >>= 7
  981. offset++
  982. }
  983. dAtA[offset] = uint8(v)
  984. return offset + 1
  985. }
  986. func (m *PayGoodsAddReq) Size() (n int) {
  987. if m == nil {
  988. return 0
  989. }
  990. var l int
  991. _ = l
  992. l = len(m.Platform)
  993. if l > 0 {
  994. n += 1 + l + sovPayGoods(uint64(l))
  995. }
  996. l = len(m.Title)
  997. if l > 0 {
  998. n += 1 + l + sovPayGoods(uint64(l))
  999. }
  1000. if m.Type != 0 {
  1001. n += 1 + sovPayGoods(uint64(m.Type))
  1002. }
  1003. if m.Price != 0 {
  1004. n += 1 + sovPayGoods(uint64(m.Price))
  1005. }
  1006. l = len(m.StartTime)
  1007. if l > 0 {
  1008. n += 1 + l + sovPayGoods(uint64(l))
  1009. }
  1010. l = len(m.EndTime)
  1011. if l > 0 {
  1012. n += 1 + l + sovPayGoods(uint64(l))
  1013. }
  1014. if m.IpLimit != 0 {
  1015. n += 1 + sovPayGoods(uint64(m.IpLimit))
  1016. }
  1017. if m.XXX_unrecognized != nil {
  1018. n += len(m.XXX_unrecognized)
  1019. }
  1020. return n
  1021. }
  1022. func (m *PayGoodsAddResp) Size() (n int) {
  1023. if m == nil {
  1024. return 0
  1025. }
  1026. var l int
  1027. _ = l
  1028. if m.XXX_unrecognized != nil {
  1029. n += len(m.XXX_unrecognized)
  1030. }
  1031. return n
  1032. }
  1033. func (m *PayGoodsUpdateReq) Size() (n int) {
  1034. if m == nil {
  1035. return 0
  1036. }
  1037. var l int
  1038. _ = l
  1039. if m.Id != 0 {
  1040. n += 1 + sovPayGoods(uint64(m.Id))
  1041. }
  1042. l = len(m.Platform)
  1043. if l > 0 {
  1044. n += 1 + l + sovPayGoods(uint64(l))
  1045. }
  1046. l = len(m.Title)
  1047. if l > 0 {
  1048. n += 1 + l + sovPayGoods(uint64(l))
  1049. }
  1050. if m.Type != 0 {
  1051. n += 1 + sovPayGoods(uint64(m.Type))
  1052. }
  1053. if m.Price != 0 {
  1054. n += 1 + sovPayGoods(uint64(m.Price))
  1055. }
  1056. l = len(m.StartTime)
  1057. if l > 0 {
  1058. n += 1 + l + sovPayGoods(uint64(l))
  1059. }
  1060. l = len(m.EndTime)
  1061. if l > 0 {
  1062. n += 1 + l + sovPayGoods(uint64(l))
  1063. }
  1064. if m.IpLimit != 0 {
  1065. n += 1 + sovPayGoods(uint64(m.IpLimit))
  1066. }
  1067. if m.XXX_unrecognized != nil {
  1068. n += len(m.XXX_unrecognized)
  1069. }
  1070. return n
  1071. }
  1072. func (m *PayGoodsUpdateResp) Size() (n int) {
  1073. if m == nil {
  1074. return 0
  1075. }
  1076. var l int
  1077. _ = l
  1078. if m.XXX_unrecognized != nil {
  1079. n += len(m.XXX_unrecognized)
  1080. }
  1081. return n
  1082. }
  1083. func (m *PayGoodsGetListReq) Size() (n int) {
  1084. if m == nil {
  1085. return 0
  1086. }
  1087. var l int
  1088. _ = l
  1089. if m.Id != 0 {
  1090. n += 1 + sovPayGoods(uint64(m.Id))
  1091. }
  1092. l = len(m.Platform)
  1093. if l > 0 {
  1094. n += 1 + l + sovPayGoods(uint64(l))
  1095. }
  1096. l = len(m.Title)
  1097. if l > 0 {
  1098. n += 1 + l + sovPayGoods(uint64(l))
  1099. }
  1100. if m.Type != 0 {
  1101. n += 1 + sovPayGoods(uint64(m.Type))
  1102. }
  1103. if m.IpLimit != 0 {
  1104. n += 1 + sovPayGoods(uint64(m.IpLimit))
  1105. }
  1106. if m.PageNum != 0 {
  1107. n += 1 + sovPayGoods(uint64(m.PageNum))
  1108. }
  1109. if m.PageSize != 0 {
  1110. n += 1 + sovPayGoods(uint64(m.PageSize))
  1111. }
  1112. if m.XXX_unrecognized != nil {
  1113. n += len(m.XXX_unrecognized)
  1114. }
  1115. return n
  1116. }
  1117. func (m *PayGoodsGetListResp) Size() (n int) {
  1118. if m == nil {
  1119. return 0
  1120. }
  1121. var l int
  1122. _ = l
  1123. if m.PageInfo != nil {
  1124. l = m.PageInfo.Size()
  1125. n += 1 + l + sovPayGoods(uint64(l))
  1126. }
  1127. if len(m.GoodsInfo) > 0 {
  1128. for _, e := range m.GoodsInfo {
  1129. l = e.Size()
  1130. n += 1 + l + sovPayGoods(uint64(l))
  1131. }
  1132. }
  1133. if m.XXX_unrecognized != nil {
  1134. n += len(m.XXX_unrecognized)
  1135. }
  1136. return n
  1137. }
  1138. func (m *PayGoodsGetListResp_PageInfo) Size() (n int) {
  1139. if m == nil {
  1140. return 0
  1141. }
  1142. var l int
  1143. _ = l
  1144. if m.TotalCount != 0 {
  1145. n += 1 + sovPayGoods(uint64(m.TotalCount))
  1146. }
  1147. if m.PageNum != 0 {
  1148. n += 1 + sovPayGoods(uint64(m.PageNum))
  1149. }
  1150. if m.XXX_unrecognized != nil {
  1151. n += len(m.XXX_unrecognized)
  1152. }
  1153. return n
  1154. }
  1155. func (m *PayGoodsGetListResp_GoodsInfo) Size() (n int) {
  1156. if m == nil {
  1157. return 0
  1158. }
  1159. var l int
  1160. _ = l
  1161. if m.Id != 0 {
  1162. n += 1 + sovPayGoods(uint64(m.Id))
  1163. }
  1164. l = len(m.Title)
  1165. if l > 0 {
  1166. n += 1 + l + sovPayGoods(uint64(l))
  1167. }
  1168. l = len(m.Platform)
  1169. if l > 0 {
  1170. n += 1 + l + sovPayGoods(uint64(l))
  1171. }
  1172. if m.Type != 0 {
  1173. n += 1 + sovPayGoods(uint64(m.Type))
  1174. }
  1175. if m.Price != 0 {
  1176. n += 1 + sovPayGoods(uint64(m.Price))
  1177. }
  1178. l = len(m.StartTime)
  1179. if l > 0 {
  1180. n += 1 + l + sovPayGoods(uint64(l))
  1181. }
  1182. l = len(m.EndTime)
  1183. if l > 0 {
  1184. n += 1 + l + sovPayGoods(uint64(l))
  1185. }
  1186. if m.IpLimit != 0 {
  1187. n += 1 + sovPayGoods(uint64(m.IpLimit))
  1188. }
  1189. if m.Status != 0 {
  1190. n += 1 + sovPayGoods(uint64(m.Status))
  1191. }
  1192. if m.XXX_unrecognized != nil {
  1193. n += len(m.XXX_unrecognized)
  1194. }
  1195. return n
  1196. }
  1197. func (m *PayGoodsCloseReq) Size() (n int) {
  1198. if m == nil {
  1199. return 0
  1200. }
  1201. var l int
  1202. _ = l
  1203. if m.Id != 0 {
  1204. n += 1 + sovPayGoods(uint64(m.Id))
  1205. }
  1206. if m.XXX_unrecognized != nil {
  1207. n += len(m.XXX_unrecognized)
  1208. }
  1209. return n
  1210. }
  1211. func (m *PayGoodsCloseResp) Size() (n int) {
  1212. if m == nil {
  1213. return 0
  1214. }
  1215. var l int
  1216. _ = l
  1217. if m.XXX_unrecognized != nil {
  1218. n += len(m.XXX_unrecognized)
  1219. }
  1220. return n
  1221. }
  1222. func (m *PayGoodsOpenReq) Size() (n int) {
  1223. if m == nil {
  1224. return 0
  1225. }
  1226. var l int
  1227. _ = l
  1228. if m.Id != 0 {
  1229. n += 1 + sovPayGoods(uint64(m.Id))
  1230. }
  1231. if m.XXX_unrecognized != nil {
  1232. n += len(m.XXX_unrecognized)
  1233. }
  1234. return n
  1235. }
  1236. func (m *PayGoodsOpenResp) Size() (n int) {
  1237. if m == nil {
  1238. return 0
  1239. }
  1240. var l int
  1241. _ = l
  1242. if m.XXX_unrecognized != nil {
  1243. n += len(m.XXX_unrecognized)
  1244. }
  1245. return n
  1246. }
  1247. func sovPayGoods(x uint64) (n int) {
  1248. for {
  1249. n++
  1250. x >>= 7
  1251. if x == 0 {
  1252. break
  1253. }
  1254. }
  1255. return n
  1256. }
  1257. func sozPayGoods(x uint64) (n int) {
  1258. return sovPayGoods(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  1259. }
  1260. func (m *PayGoodsAddReq) Unmarshal(dAtA []byte) error {
  1261. l := len(dAtA)
  1262. iNdEx := 0
  1263. for iNdEx < l {
  1264. preIndex := iNdEx
  1265. var wire uint64
  1266. for shift := uint(0); ; shift += 7 {
  1267. if shift >= 64 {
  1268. return ErrIntOverflowPayGoods
  1269. }
  1270. if iNdEx >= l {
  1271. return io.ErrUnexpectedEOF
  1272. }
  1273. b := dAtA[iNdEx]
  1274. iNdEx++
  1275. wire |= (uint64(b) & 0x7F) << shift
  1276. if b < 0x80 {
  1277. break
  1278. }
  1279. }
  1280. fieldNum := int32(wire >> 3)
  1281. wireType := int(wire & 0x7)
  1282. if wireType == 4 {
  1283. return fmt.Errorf("proto: PayGoodsAddReq: wiretype end group for non-group")
  1284. }
  1285. if fieldNum <= 0 {
  1286. return fmt.Errorf("proto: PayGoodsAddReq: illegal tag %d (wire type %d)", fieldNum, wire)
  1287. }
  1288. switch fieldNum {
  1289. case 1:
  1290. if wireType != 2 {
  1291. return fmt.Errorf("proto: wrong wireType = %d for field Platform", wireType)
  1292. }
  1293. var stringLen uint64
  1294. for shift := uint(0); ; shift += 7 {
  1295. if shift >= 64 {
  1296. return ErrIntOverflowPayGoods
  1297. }
  1298. if iNdEx >= l {
  1299. return io.ErrUnexpectedEOF
  1300. }
  1301. b := dAtA[iNdEx]
  1302. iNdEx++
  1303. stringLen |= (uint64(b) & 0x7F) << shift
  1304. if b < 0x80 {
  1305. break
  1306. }
  1307. }
  1308. intStringLen := int(stringLen)
  1309. if intStringLen < 0 {
  1310. return ErrInvalidLengthPayGoods
  1311. }
  1312. postIndex := iNdEx + intStringLen
  1313. if postIndex > l {
  1314. return io.ErrUnexpectedEOF
  1315. }
  1316. m.Platform = string(dAtA[iNdEx:postIndex])
  1317. iNdEx = postIndex
  1318. case 2:
  1319. if wireType != 2 {
  1320. return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType)
  1321. }
  1322. var stringLen uint64
  1323. for shift := uint(0); ; shift += 7 {
  1324. if shift >= 64 {
  1325. return ErrIntOverflowPayGoods
  1326. }
  1327. if iNdEx >= l {
  1328. return io.ErrUnexpectedEOF
  1329. }
  1330. b := dAtA[iNdEx]
  1331. iNdEx++
  1332. stringLen |= (uint64(b) & 0x7F) << shift
  1333. if b < 0x80 {
  1334. break
  1335. }
  1336. }
  1337. intStringLen := int(stringLen)
  1338. if intStringLen < 0 {
  1339. return ErrInvalidLengthPayGoods
  1340. }
  1341. postIndex := iNdEx + intStringLen
  1342. if postIndex > l {
  1343. return io.ErrUnexpectedEOF
  1344. }
  1345. m.Title = string(dAtA[iNdEx:postIndex])
  1346. iNdEx = postIndex
  1347. case 3:
  1348. if wireType != 0 {
  1349. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  1350. }
  1351. m.Type = 0
  1352. for shift := uint(0); ; shift += 7 {
  1353. if shift >= 64 {
  1354. return ErrIntOverflowPayGoods
  1355. }
  1356. if iNdEx >= l {
  1357. return io.ErrUnexpectedEOF
  1358. }
  1359. b := dAtA[iNdEx]
  1360. iNdEx++
  1361. m.Type |= (int64(b) & 0x7F) << shift
  1362. if b < 0x80 {
  1363. break
  1364. }
  1365. }
  1366. case 4:
  1367. if wireType != 0 {
  1368. return fmt.Errorf("proto: wrong wireType = %d for field Price", wireType)
  1369. }
  1370. m.Price = 0
  1371. for shift := uint(0); ; shift += 7 {
  1372. if shift >= 64 {
  1373. return ErrIntOverflowPayGoods
  1374. }
  1375. if iNdEx >= l {
  1376. return io.ErrUnexpectedEOF
  1377. }
  1378. b := dAtA[iNdEx]
  1379. iNdEx++
  1380. m.Price |= (int64(b) & 0x7F) << shift
  1381. if b < 0x80 {
  1382. break
  1383. }
  1384. }
  1385. case 5:
  1386. if wireType != 2 {
  1387. return fmt.Errorf("proto: wrong wireType = %d for field StartTime", wireType)
  1388. }
  1389. var stringLen uint64
  1390. for shift := uint(0); ; shift += 7 {
  1391. if shift >= 64 {
  1392. return ErrIntOverflowPayGoods
  1393. }
  1394. if iNdEx >= l {
  1395. return io.ErrUnexpectedEOF
  1396. }
  1397. b := dAtA[iNdEx]
  1398. iNdEx++
  1399. stringLen |= (uint64(b) & 0x7F) << shift
  1400. if b < 0x80 {
  1401. break
  1402. }
  1403. }
  1404. intStringLen := int(stringLen)
  1405. if intStringLen < 0 {
  1406. return ErrInvalidLengthPayGoods
  1407. }
  1408. postIndex := iNdEx + intStringLen
  1409. if postIndex > l {
  1410. return io.ErrUnexpectedEOF
  1411. }
  1412. m.StartTime = string(dAtA[iNdEx:postIndex])
  1413. iNdEx = postIndex
  1414. case 6:
  1415. if wireType != 2 {
  1416. return fmt.Errorf("proto: wrong wireType = %d for field EndTime", wireType)
  1417. }
  1418. var stringLen uint64
  1419. for shift := uint(0); ; shift += 7 {
  1420. if shift >= 64 {
  1421. return ErrIntOverflowPayGoods
  1422. }
  1423. if iNdEx >= l {
  1424. return io.ErrUnexpectedEOF
  1425. }
  1426. b := dAtA[iNdEx]
  1427. iNdEx++
  1428. stringLen |= (uint64(b) & 0x7F) << shift
  1429. if b < 0x80 {
  1430. break
  1431. }
  1432. }
  1433. intStringLen := int(stringLen)
  1434. if intStringLen < 0 {
  1435. return ErrInvalidLengthPayGoods
  1436. }
  1437. postIndex := iNdEx + intStringLen
  1438. if postIndex > l {
  1439. return io.ErrUnexpectedEOF
  1440. }
  1441. m.EndTime = string(dAtA[iNdEx:postIndex])
  1442. iNdEx = postIndex
  1443. case 7:
  1444. if wireType != 0 {
  1445. return fmt.Errorf("proto: wrong wireType = %d for field IpLimit", wireType)
  1446. }
  1447. m.IpLimit = 0
  1448. for shift := uint(0); ; shift += 7 {
  1449. if shift >= 64 {
  1450. return ErrIntOverflowPayGoods
  1451. }
  1452. if iNdEx >= l {
  1453. return io.ErrUnexpectedEOF
  1454. }
  1455. b := dAtA[iNdEx]
  1456. iNdEx++
  1457. m.IpLimit |= (int64(b) & 0x7F) << shift
  1458. if b < 0x80 {
  1459. break
  1460. }
  1461. }
  1462. default:
  1463. iNdEx = preIndex
  1464. skippy, err := skipPayGoods(dAtA[iNdEx:])
  1465. if err != nil {
  1466. return err
  1467. }
  1468. if skippy < 0 {
  1469. return ErrInvalidLengthPayGoods
  1470. }
  1471. if (iNdEx + skippy) > l {
  1472. return io.ErrUnexpectedEOF
  1473. }
  1474. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  1475. iNdEx += skippy
  1476. }
  1477. }
  1478. if iNdEx > l {
  1479. return io.ErrUnexpectedEOF
  1480. }
  1481. return nil
  1482. }
  1483. func (m *PayGoodsAddResp) Unmarshal(dAtA []byte) error {
  1484. l := len(dAtA)
  1485. iNdEx := 0
  1486. for iNdEx < l {
  1487. preIndex := iNdEx
  1488. var wire uint64
  1489. for shift := uint(0); ; shift += 7 {
  1490. if shift >= 64 {
  1491. return ErrIntOverflowPayGoods
  1492. }
  1493. if iNdEx >= l {
  1494. return io.ErrUnexpectedEOF
  1495. }
  1496. b := dAtA[iNdEx]
  1497. iNdEx++
  1498. wire |= (uint64(b) & 0x7F) << shift
  1499. if b < 0x80 {
  1500. break
  1501. }
  1502. }
  1503. fieldNum := int32(wire >> 3)
  1504. wireType := int(wire & 0x7)
  1505. if wireType == 4 {
  1506. return fmt.Errorf("proto: PayGoodsAddResp: wiretype end group for non-group")
  1507. }
  1508. if fieldNum <= 0 {
  1509. return fmt.Errorf("proto: PayGoodsAddResp: illegal tag %d (wire type %d)", fieldNum, wire)
  1510. }
  1511. switch fieldNum {
  1512. default:
  1513. iNdEx = preIndex
  1514. skippy, err := skipPayGoods(dAtA[iNdEx:])
  1515. if err != nil {
  1516. return err
  1517. }
  1518. if skippy < 0 {
  1519. return ErrInvalidLengthPayGoods
  1520. }
  1521. if (iNdEx + skippy) > l {
  1522. return io.ErrUnexpectedEOF
  1523. }
  1524. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  1525. iNdEx += skippy
  1526. }
  1527. }
  1528. if iNdEx > l {
  1529. return io.ErrUnexpectedEOF
  1530. }
  1531. return nil
  1532. }
  1533. func (m *PayGoodsUpdateReq) Unmarshal(dAtA []byte) error {
  1534. l := len(dAtA)
  1535. iNdEx := 0
  1536. for iNdEx < l {
  1537. preIndex := iNdEx
  1538. var wire uint64
  1539. for shift := uint(0); ; shift += 7 {
  1540. if shift >= 64 {
  1541. return ErrIntOverflowPayGoods
  1542. }
  1543. if iNdEx >= l {
  1544. return io.ErrUnexpectedEOF
  1545. }
  1546. b := dAtA[iNdEx]
  1547. iNdEx++
  1548. wire |= (uint64(b) & 0x7F) << shift
  1549. if b < 0x80 {
  1550. break
  1551. }
  1552. }
  1553. fieldNum := int32(wire >> 3)
  1554. wireType := int(wire & 0x7)
  1555. if wireType == 4 {
  1556. return fmt.Errorf("proto: PayGoodsUpdateReq: wiretype end group for non-group")
  1557. }
  1558. if fieldNum <= 0 {
  1559. return fmt.Errorf("proto: PayGoodsUpdateReq: illegal tag %d (wire type %d)", fieldNum, wire)
  1560. }
  1561. switch fieldNum {
  1562. case 1:
  1563. if wireType != 0 {
  1564. return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
  1565. }
  1566. m.Id = 0
  1567. for shift := uint(0); ; shift += 7 {
  1568. if shift >= 64 {
  1569. return ErrIntOverflowPayGoods
  1570. }
  1571. if iNdEx >= l {
  1572. return io.ErrUnexpectedEOF
  1573. }
  1574. b := dAtA[iNdEx]
  1575. iNdEx++
  1576. m.Id |= (int64(b) & 0x7F) << shift
  1577. if b < 0x80 {
  1578. break
  1579. }
  1580. }
  1581. case 2:
  1582. if wireType != 2 {
  1583. return fmt.Errorf("proto: wrong wireType = %d for field Platform", wireType)
  1584. }
  1585. var stringLen uint64
  1586. for shift := uint(0); ; shift += 7 {
  1587. if shift >= 64 {
  1588. return ErrIntOverflowPayGoods
  1589. }
  1590. if iNdEx >= l {
  1591. return io.ErrUnexpectedEOF
  1592. }
  1593. b := dAtA[iNdEx]
  1594. iNdEx++
  1595. stringLen |= (uint64(b) & 0x7F) << shift
  1596. if b < 0x80 {
  1597. break
  1598. }
  1599. }
  1600. intStringLen := int(stringLen)
  1601. if intStringLen < 0 {
  1602. return ErrInvalidLengthPayGoods
  1603. }
  1604. postIndex := iNdEx + intStringLen
  1605. if postIndex > l {
  1606. return io.ErrUnexpectedEOF
  1607. }
  1608. m.Platform = string(dAtA[iNdEx:postIndex])
  1609. iNdEx = postIndex
  1610. case 3:
  1611. if wireType != 2 {
  1612. return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType)
  1613. }
  1614. var stringLen uint64
  1615. for shift := uint(0); ; shift += 7 {
  1616. if shift >= 64 {
  1617. return ErrIntOverflowPayGoods
  1618. }
  1619. if iNdEx >= l {
  1620. return io.ErrUnexpectedEOF
  1621. }
  1622. b := dAtA[iNdEx]
  1623. iNdEx++
  1624. stringLen |= (uint64(b) & 0x7F) << shift
  1625. if b < 0x80 {
  1626. break
  1627. }
  1628. }
  1629. intStringLen := int(stringLen)
  1630. if intStringLen < 0 {
  1631. return ErrInvalidLengthPayGoods
  1632. }
  1633. postIndex := iNdEx + intStringLen
  1634. if postIndex > l {
  1635. return io.ErrUnexpectedEOF
  1636. }
  1637. m.Title = string(dAtA[iNdEx:postIndex])
  1638. iNdEx = postIndex
  1639. case 4:
  1640. if wireType != 0 {
  1641. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  1642. }
  1643. m.Type = 0
  1644. for shift := uint(0); ; shift += 7 {
  1645. if shift >= 64 {
  1646. return ErrIntOverflowPayGoods
  1647. }
  1648. if iNdEx >= l {
  1649. return io.ErrUnexpectedEOF
  1650. }
  1651. b := dAtA[iNdEx]
  1652. iNdEx++
  1653. m.Type |= (int64(b) & 0x7F) << shift
  1654. if b < 0x80 {
  1655. break
  1656. }
  1657. }
  1658. case 5:
  1659. if wireType != 0 {
  1660. return fmt.Errorf("proto: wrong wireType = %d for field Price", wireType)
  1661. }
  1662. m.Price = 0
  1663. for shift := uint(0); ; shift += 7 {
  1664. if shift >= 64 {
  1665. return ErrIntOverflowPayGoods
  1666. }
  1667. if iNdEx >= l {
  1668. return io.ErrUnexpectedEOF
  1669. }
  1670. b := dAtA[iNdEx]
  1671. iNdEx++
  1672. m.Price |= (int64(b) & 0x7F) << shift
  1673. if b < 0x80 {
  1674. break
  1675. }
  1676. }
  1677. case 6:
  1678. if wireType != 2 {
  1679. return fmt.Errorf("proto: wrong wireType = %d for field StartTime", wireType)
  1680. }
  1681. var stringLen uint64
  1682. for shift := uint(0); ; shift += 7 {
  1683. if shift >= 64 {
  1684. return ErrIntOverflowPayGoods
  1685. }
  1686. if iNdEx >= l {
  1687. return io.ErrUnexpectedEOF
  1688. }
  1689. b := dAtA[iNdEx]
  1690. iNdEx++
  1691. stringLen |= (uint64(b) & 0x7F) << shift
  1692. if b < 0x80 {
  1693. break
  1694. }
  1695. }
  1696. intStringLen := int(stringLen)
  1697. if intStringLen < 0 {
  1698. return ErrInvalidLengthPayGoods
  1699. }
  1700. postIndex := iNdEx + intStringLen
  1701. if postIndex > l {
  1702. return io.ErrUnexpectedEOF
  1703. }
  1704. m.StartTime = string(dAtA[iNdEx:postIndex])
  1705. iNdEx = postIndex
  1706. case 7:
  1707. if wireType != 2 {
  1708. return fmt.Errorf("proto: wrong wireType = %d for field EndTime", wireType)
  1709. }
  1710. var stringLen uint64
  1711. for shift := uint(0); ; shift += 7 {
  1712. if shift >= 64 {
  1713. return ErrIntOverflowPayGoods
  1714. }
  1715. if iNdEx >= l {
  1716. return io.ErrUnexpectedEOF
  1717. }
  1718. b := dAtA[iNdEx]
  1719. iNdEx++
  1720. stringLen |= (uint64(b) & 0x7F) << shift
  1721. if b < 0x80 {
  1722. break
  1723. }
  1724. }
  1725. intStringLen := int(stringLen)
  1726. if intStringLen < 0 {
  1727. return ErrInvalidLengthPayGoods
  1728. }
  1729. postIndex := iNdEx + intStringLen
  1730. if postIndex > l {
  1731. return io.ErrUnexpectedEOF
  1732. }
  1733. m.EndTime = string(dAtA[iNdEx:postIndex])
  1734. iNdEx = postIndex
  1735. case 8:
  1736. if wireType != 0 {
  1737. return fmt.Errorf("proto: wrong wireType = %d for field IpLimit", wireType)
  1738. }
  1739. m.IpLimit = 0
  1740. for shift := uint(0); ; shift += 7 {
  1741. if shift >= 64 {
  1742. return ErrIntOverflowPayGoods
  1743. }
  1744. if iNdEx >= l {
  1745. return io.ErrUnexpectedEOF
  1746. }
  1747. b := dAtA[iNdEx]
  1748. iNdEx++
  1749. m.IpLimit |= (int64(b) & 0x7F) << shift
  1750. if b < 0x80 {
  1751. break
  1752. }
  1753. }
  1754. default:
  1755. iNdEx = preIndex
  1756. skippy, err := skipPayGoods(dAtA[iNdEx:])
  1757. if err != nil {
  1758. return err
  1759. }
  1760. if skippy < 0 {
  1761. return ErrInvalidLengthPayGoods
  1762. }
  1763. if (iNdEx + skippy) > l {
  1764. return io.ErrUnexpectedEOF
  1765. }
  1766. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  1767. iNdEx += skippy
  1768. }
  1769. }
  1770. if iNdEx > l {
  1771. return io.ErrUnexpectedEOF
  1772. }
  1773. return nil
  1774. }
  1775. func (m *PayGoodsUpdateResp) Unmarshal(dAtA []byte) error {
  1776. l := len(dAtA)
  1777. iNdEx := 0
  1778. for iNdEx < l {
  1779. preIndex := iNdEx
  1780. var wire uint64
  1781. for shift := uint(0); ; shift += 7 {
  1782. if shift >= 64 {
  1783. return ErrIntOverflowPayGoods
  1784. }
  1785. if iNdEx >= l {
  1786. return io.ErrUnexpectedEOF
  1787. }
  1788. b := dAtA[iNdEx]
  1789. iNdEx++
  1790. wire |= (uint64(b) & 0x7F) << shift
  1791. if b < 0x80 {
  1792. break
  1793. }
  1794. }
  1795. fieldNum := int32(wire >> 3)
  1796. wireType := int(wire & 0x7)
  1797. if wireType == 4 {
  1798. return fmt.Errorf("proto: PayGoodsUpdateResp: wiretype end group for non-group")
  1799. }
  1800. if fieldNum <= 0 {
  1801. return fmt.Errorf("proto: PayGoodsUpdateResp: illegal tag %d (wire type %d)", fieldNum, wire)
  1802. }
  1803. switch fieldNum {
  1804. default:
  1805. iNdEx = preIndex
  1806. skippy, err := skipPayGoods(dAtA[iNdEx:])
  1807. if err != nil {
  1808. return err
  1809. }
  1810. if skippy < 0 {
  1811. return ErrInvalidLengthPayGoods
  1812. }
  1813. if (iNdEx + skippy) > l {
  1814. return io.ErrUnexpectedEOF
  1815. }
  1816. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  1817. iNdEx += skippy
  1818. }
  1819. }
  1820. if iNdEx > l {
  1821. return io.ErrUnexpectedEOF
  1822. }
  1823. return nil
  1824. }
  1825. func (m *PayGoodsGetListReq) Unmarshal(dAtA []byte) error {
  1826. l := len(dAtA)
  1827. iNdEx := 0
  1828. for iNdEx < l {
  1829. preIndex := iNdEx
  1830. var wire uint64
  1831. for shift := uint(0); ; shift += 7 {
  1832. if shift >= 64 {
  1833. return ErrIntOverflowPayGoods
  1834. }
  1835. if iNdEx >= l {
  1836. return io.ErrUnexpectedEOF
  1837. }
  1838. b := dAtA[iNdEx]
  1839. iNdEx++
  1840. wire |= (uint64(b) & 0x7F) << shift
  1841. if b < 0x80 {
  1842. break
  1843. }
  1844. }
  1845. fieldNum := int32(wire >> 3)
  1846. wireType := int(wire & 0x7)
  1847. if wireType == 4 {
  1848. return fmt.Errorf("proto: PayGoodsGetListReq: wiretype end group for non-group")
  1849. }
  1850. if fieldNum <= 0 {
  1851. return fmt.Errorf("proto: PayGoodsGetListReq: illegal tag %d (wire type %d)", fieldNum, wire)
  1852. }
  1853. switch fieldNum {
  1854. case 1:
  1855. if wireType != 0 {
  1856. return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
  1857. }
  1858. m.Id = 0
  1859. for shift := uint(0); ; shift += 7 {
  1860. if shift >= 64 {
  1861. return ErrIntOverflowPayGoods
  1862. }
  1863. if iNdEx >= l {
  1864. return io.ErrUnexpectedEOF
  1865. }
  1866. b := dAtA[iNdEx]
  1867. iNdEx++
  1868. m.Id |= (int64(b) & 0x7F) << shift
  1869. if b < 0x80 {
  1870. break
  1871. }
  1872. }
  1873. case 2:
  1874. if wireType != 2 {
  1875. return fmt.Errorf("proto: wrong wireType = %d for field Platform", wireType)
  1876. }
  1877. var stringLen uint64
  1878. for shift := uint(0); ; shift += 7 {
  1879. if shift >= 64 {
  1880. return ErrIntOverflowPayGoods
  1881. }
  1882. if iNdEx >= l {
  1883. return io.ErrUnexpectedEOF
  1884. }
  1885. b := dAtA[iNdEx]
  1886. iNdEx++
  1887. stringLen |= (uint64(b) & 0x7F) << shift
  1888. if b < 0x80 {
  1889. break
  1890. }
  1891. }
  1892. intStringLen := int(stringLen)
  1893. if intStringLen < 0 {
  1894. return ErrInvalidLengthPayGoods
  1895. }
  1896. postIndex := iNdEx + intStringLen
  1897. if postIndex > l {
  1898. return io.ErrUnexpectedEOF
  1899. }
  1900. m.Platform = string(dAtA[iNdEx:postIndex])
  1901. iNdEx = postIndex
  1902. case 3:
  1903. if wireType != 2 {
  1904. return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType)
  1905. }
  1906. var stringLen uint64
  1907. for shift := uint(0); ; shift += 7 {
  1908. if shift >= 64 {
  1909. return ErrIntOverflowPayGoods
  1910. }
  1911. if iNdEx >= l {
  1912. return io.ErrUnexpectedEOF
  1913. }
  1914. b := dAtA[iNdEx]
  1915. iNdEx++
  1916. stringLen |= (uint64(b) & 0x7F) << shift
  1917. if b < 0x80 {
  1918. break
  1919. }
  1920. }
  1921. intStringLen := int(stringLen)
  1922. if intStringLen < 0 {
  1923. return ErrInvalidLengthPayGoods
  1924. }
  1925. postIndex := iNdEx + intStringLen
  1926. if postIndex > l {
  1927. return io.ErrUnexpectedEOF
  1928. }
  1929. m.Title = string(dAtA[iNdEx:postIndex])
  1930. iNdEx = postIndex
  1931. case 4:
  1932. if wireType != 0 {
  1933. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  1934. }
  1935. m.Type = 0
  1936. for shift := uint(0); ; shift += 7 {
  1937. if shift >= 64 {
  1938. return ErrIntOverflowPayGoods
  1939. }
  1940. if iNdEx >= l {
  1941. return io.ErrUnexpectedEOF
  1942. }
  1943. b := dAtA[iNdEx]
  1944. iNdEx++
  1945. m.Type |= (int64(b) & 0x7F) << shift
  1946. if b < 0x80 {
  1947. break
  1948. }
  1949. }
  1950. case 5:
  1951. if wireType != 0 {
  1952. return fmt.Errorf("proto: wrong wireType = %d for field IpLimit", wireType)
  1953. }
  1954. m.IpLimit = 0
  1955. for shift := uint(0); ; shift += 7 {
  1956. if shift >= 64 {
  1957. return ErrIntOverflowPayGoods
  1958. }
  1959. if iNdEx >= l {
  1960. return io.ErrUnexpectedEOF
  1961. }
  1962. b := dAtA[iNdEx]
  1963. iNdEx++
  1964. m.IpLimit |= (int64(b) & 0x7F) << shift
  1965. if b < 0x80 {
  1966. break
  1967. }
  1968. }
  1969. case 6:
  1970. if wireType != 0 {
  1971. return fmt.Errorf("proto: wrong wireType = %d for field PageNum", wireType)
  1972. }
  1973. m.PageNum = 0
  1974. for shift := uint(0); ; shift += 7 {
  1975. if shift >= 64 {
  1976. return ErrIntOverflowPayGoods
  1977. }
  1978. if iNdEx >= l {
  1979. return io.ErrUnexpectedEOF
  1980. }
  1981. b := dAtA[iNdEx]
  1982. iNdEx++
  1983. m.PageNum |= (int64(b) & 0x7F) << shift
  1984. if b < 0x80 {
  1985. break
  1986. }
  1987. }
  1988. case 7:
  1989. if wireType != 0 {
  1990. return fmt.Errorf("proto: wrong wireType = %d for field PageSize", wireType)
  1991. }
  1992. m.PageSize = 0
  1993. for shift := uint(0); ; shift += 7 {
  1994. if shift >= 64 {
  1995. return ErrIntOverflowPayGoods
  1996. }
  1997. if iNdEx >= l {
  1998. return io.ErrUnexpectedEOF
  1999. }
  2000. b := dAtA[iNdEx]
  2001. iNdEx++
  2002. m.PageSize |= (int64(b) & 0x7F) << shift
  2003. if b < 0x80 {
  2004. break
  2005. }
  2006. }
  2007. default:
  2008. iNdEx = preIndex
  2009. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2010. if err != nil {
  2011. return err
  2012. }
  2013. if skippy < 0 {
  2014. return ErrInvalidLengthPayGoods
  2015. }
  2016. if (iNdEx + skippy) > l {
  2017. return io.ErrUnexpectedEOF
  2018. }
  2019. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2020. iNdEx += skippy
  2021. }
  2022. }
  2023. if iNdEx > l {
  2024. return io.ErrUnexpectedEOF
  2025. }
  2026. return nil
  2027. }
  2028. func (m *PayGoodsGetListResp) Unmarshal(dAtA []byte) error {
  2029. l := len(dAtA)
  2030. iNdEx := 0
  2031. for iNdEx < l {
  2032. preIndex := iNdEx
  2033. var wire uint64
  2034. for shift := uint(0); ; shift += 7 {
  2035. if shift >= 64 {
  2036. return ErrIntOverflowPayGoods
  2037. }
  2038. if iNdEx >= l {
  2039. return io.ErrUnexpectedEOF
  2040. }
  2041. b := dAtA[iNdEx]
  2042. iNdEx++
  2043. wire |= (uint64(b) & 0x7F) << shift
  2044. if b < 0x80 {
  2045. break
  2046. }
  2047. }
  2048. fieldNum := int32(wire >> 3)
  2049. wireType := int(wire & 0x7)
  2050. if wireType == 4 {
  2051. return fmt.Errorf("proto: PayGoodsGetListResp: wiretype end group for non-group")
  2052. }
  2053. if fieldNum <= 0 {
  2054. return fmt.Errorf("proto: PayGoodsGetListResp: illegal tag %d (wire type %d)", fieldNum, wire)
  2055. }
  2056. switch fieldNum {
  2057. case 1:
  2058. if wireType != 2 {
  2059. return fmt.Errorf("proto: wrong wireType = %d for field PageInfo", wireType)
  2060. }
  2061. var msglen int
  2062. for shift := uint(0); ; shift += 7 {
  2063. if shift >= 64 {
  2064. return ErrIntOverflowPayGoods
  2065. }
  2066. if iNdEx >= l {
  2067. return io.ErrUnexpectedEOF
  2068. }
  2069. b := dAtA[iNdEx]
  2070. iNdEx++
  2071. msglen |= (int(b) & 0x7F) << shift
  2072. if b < 0x80 {
  2073. break
  2074. }
  2075. }
  2076. if msglen < 0 {
  2077. return ErrInvalidLengthPayGoods
  2078. }
  2079. postIndex := iNdEx + msglen
  2080. if postIndex > l {
  2081. return io.ErrUnexpectedEOF
  2082. }
  2083. if m.PageInfo == nil {
  2084. m.PageInfo = &PayGoodsGetListResp_PageInfo{}
  2085. }
  2086. if err := m.PageInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  2087. return err
  2088. }
  2089. iNdEx = postIndex
  2090. case 2:
  2091. if wireType != 2 {
  2092. return fmt.Errorf("proto: wrong wireType = %d for field GoodsInfo", wireType)
  2093. }
  2094. var msglen int
  2095. for shift := uint(0); ; shift += 7 {
  2096. if shift >= 64 {
  2097. return ErrIntOverflowPayGoods
  2098. }
  2099. if iNdEx >= l {
  2100. return io.ErrUnexpectedEOF
  2101. }
  2102. b := dAtA[iNdEx]
  2103. iNdEx++
  2104. msglen |= (int(b) & 0x7F) << shift
  2105. if b < 0x80 {
  2106. break
  2107. }
  2108. }
  2109. if msglen < 0 {
  2110. return ErrInvalidLengthPayGoods
  2111. }
  2112. postIndex := iNdEx + msglen
  2113. if postIndex > l {
  2114. return io.ErrUnexpectedEOF
  2115. }
  2116. m.GoodsInfo = append(m.GoodsInfo, &PayGoodsGetListResp_GoodsInfo{})
  2117. if err := m.GoodsInfo[len(m.GoodsInfo)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  2118. return err
  2119. }
  2120. iNdEx = postIndex
  2121. default:
  2122. iNdEx = preIndex
  2123. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2124. if err != nil {
  2125. return err
  2126. }
  2127. if skippy < 0 {
  2128. return ErrInvalidLengthPayGoods
  2129. }
  2130. if (iNdEx + skippy) > l {
  2131. return io.ErrUnexpectedEOF
  2132. }
  2133. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2134. iNdEx += skippy
  2135. }
  2136. }
  2137. if iNdEx > l {
  2138. return io.ErrUnexpectedEOF
  2139. }
  2140. return nil
  2141. }
  2142. func (m *PayGoodsGetListResp_PageInfo) Unmarshal(dAtA []byte) error {
  2143. l := len(dAtA)
  2144. iNdEx := 0
  2145. for iNdEx < l {
  2146. preIndex := iNdEx
  2147. var wire uint64
  2148. for shift := uint(0); ; shift += 7 {
  2149. if shift >= 64 {
  2150. return ErrIntOverflowPayGoods
  2151. }
  2152. if iNdEx >= l {
  2153. return io.ErrUnexpectedEOF
  2154. }
  2155. b := dAtA[iNdEx]
  2156. iNdEx++
  2157. wire |= (uint64(b) & 0x7F) << shift
  2158. if b < 0x80 {
  2159. break
  2160. }
  2161. }
  2162. fieldNum := int32(wire >> 3)
  2163. wireType := int(wire & 0x7)
  2164. if wireType == 4 {
  2165. return fmt.Errorf("proto: PageInfo: wiretype end group for non-group")
  2166. }
  2167. if fieldNum <= 0 {
  2168. return fmt.Errorf("proto: PageInfo: illegal tag %d (wire type %d)", fieldNum, wire)
  2169. }
  2170. switch fieldNum {
  2171. case 1:
  2172. if wireType != 0 {
  2173. return fmt.Errorf("proto: wrong wireType = %d for field TotalCount", wireType)
  2174. }
  2175. m.TotalCount = 0
  2176. for shift := uint(0); ; shift += 7 {
  2177. if shift >= 64 {
  2178. return ErrIntOverflowPayGoods
  2179. }
  2180. if iNdEx >= l {
  2181. return io.ErrUnexpectedEOF
  2182. }
  2183. b := dAtA[iNdEx]
  2184. iNdEx++
  2185. m.TotalCount |= (int64(b) & 0x7F) << shift
  2186. if b < 0x80 {
  2187. break
  2188. }
  2189. }
  2190. case 2:
  2191. if wireType != 0 {
  2192. return fmt.Errorf("proto: wrong wireType = %d for field PageNum", wireType)
  2193. }
  2194. m.PageNum = 0
  2195. for shift := uint(0); ; shift += 7 {
  2196. if shift >= 64 {
  2197. return ErrIntOverflowPayGoods
  2198. }
  2199. if iNdEx >= l {
  2200. return io.ErrUnexpectedEOF
  2201. }
  2202. b := dAtA[iNdEx]
  2203. iNdEx++
  2204. m.PageNum |= (int64(b) & 0x7F) << shift
  2205. if b < 0x80 {
  2206. break
  2207. }
  2208. }
  2209. default:
  2210. iNdEx = preIndex
  2211. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2212. if err != nil {
  2213. return err
  2214. }
  2215. if skippy < 0 {
  2216. return ErrInvalidLengthPayGoods
  2217. }
  2218. if (iNdEx + skippy) > l {
  2219. return io.ErrUnexpectedEOF
  2220. }
  2221. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2222. iNdEx += skippy
  2223. }
  2224. }
  2225. if iNdEx > l {
  2226. return io.ErrUnexpectedEOF
  2227. }
  2228. return nil
  2229. }
  2230. func (m *PayGoodsGetListResp_GoodsInfo) Unmarshal(dAtA []byte) error {
  2231. l := len(dAtA)
  2232. iNdEx := 0
  2233. for iNdEx < l {
  2234. preIndex := iNdEx
  2235. var wire uint64
  2236. for shift := uint(0); ; shift += 7 {
  2237. if shift >= 64 {
  2238. return ErrIntOverflowPayGoods
  2239. }
  2240. if iNdEx >= l {
  2241. return io.ErrUnexpectedEOF
  2242. }
  2243. b := dAtA[iNdEx]
  2244. iNdEx++
  2245. wire |= (uint64(b) & 0x7F) << shift
  2246. if b < 0x80 {
  2247. break
  2248. }
  2249. }
  2250. fieldNum := int32(wire >> 3)
  2251. wireType := int(wire & 0x7)
  2252. if wireType == 4 {
  2253. return fmt.Errorf("proto: GoodsInfo: wiretype end group for non-group")
  2254. }
  2255. if fieldNum <= 0 {
  2256. return fmt.Errorf("proto: GoodsInfo: illegal tag %d (wire type %d)", fieldNum, wire)
  2257. }
  2258. switch fieldNum {
  2259. case 1:
  2260. if wireType != 0 {
  2261. return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
  2262. }
  2263. m.Id = 0
  2264. for shift := uint(0); ; shift += 7 {
  2265. if shift >= 64 {
  2266. return ErrIntOverflowPayGoods
  2267. }
  2268. if iNdEx >= l {
  2269. return io.ErrUnexpectedEOF
  2270. }
  2271. b := dAtA[iNdEx]
  2272. iNdEx++
  2273. m.Id |= (int64(b) & 0x7F) << shift
  2274. if b < 0x80 {
  2275. break
  2276. }
  2277. }
  2278. case 2:
  2279. if wireType != 2 {
  2280. return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType)
  2281. }
  2282. var stringLen uint64
  2283. for shift := uint(0); ; shift += 7 {
  2284. if shift >= 64 {
  2285. return ErrIntOverflowPayGoods
  2286. }
  2287. if iNdEx >= l {
  2288. return io.ErrUnexpectedEOF
  2289. }
  2290. b := dAtA[iNdEx]
  2291. iNdEx++
  2292. stringLen |= (uint64(b) & 0x7F) << shift
  2293. if b < 0x80 {
  2294. break
  2295. }
  2296. }
  2297. intStringLen := int(stringLen)
  2298. if intStringLen < 0 {
  2299. return ErrInvalidLengthPayGoods
  2300. }
  2301. postIndex := iNdEx + intStringLen
  2302. if postIndex > l {
  2303. return io.ErrUnexpectedEOF
  2304. }
  2305. m.Title = string(dAtA[iNdEx:postIndex])
  2306. iNdEx = postIndex
  2307. case 3:
  2308. if wireType != 2 {
  2309. return fmt.Errorf("proto: wrong wireType = %d for field Platform", wireType)
  2310. }
  2311. var stringLen uint64
  2312. for shift := uint(0); ; shift += 7 {
  2313. if shift >= 64 {
  2314. return ErrIntOverflowPayGoods
  2315. }
  2316. if iNdEx >= l {
  2317. return io.ErrUnexpectedEOF
  2318. }
  2319. b := dAtA[iNdEx]
  2320. iNdEx++
  2321. stringLen |= (uint64(b) & 0x7F) << shift
  2322. if b < 0x80 {
  2323. break
  2324. }
  2325. }
  2326. intStringLen := int(stringLen)
  2327. if intStringLen < 0 {
  2328. return ErrInvalidLengthPayGoods
  2329. }
  2330. postIndex := iNdEx + intStringLen
  2331. if postIndex > l {
  2332. return io.ErrUnexpectedEOF
  2333. }
  2334. m.Platform = string(dAtA[iNdEx:postIndex])
  2335. iNdEx = postIndex
  2336. case 4:
  2337. if wireType != 0 {
  2338. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  2339. }
  2340. m.Type = 0
  2341. for shift := uint(0); ; shift += 7 {
  2342. if shift >= 64 {
  2343. return ErrIntOverflowPayGoods
  2344. }
  2345. if iNdEx >= l {
  2346. return io.ErrUnexpectedEOF
  2347. }
  2348. b := dAtA[iNdEx]
  2349. iNdEx++
  2350. m.Type |= (int64(b) & 0x7F) << shift
  2351. if b < 0x80 {
  2352. break
  2353. }
  2354. }
  2355. case 5:
  2356. if wireType != 0 {
  2357. return fmt.Errorf("proto: wrong wireType = %d for field Price", wireType)
  2358. }
  2359. m.Price = 0
  2360. for shift := uint(0); ; shift += 7 {
  2361. if shift >= 64 {
  2362. return ErrIntOverflowPayGoods
  2363. }
  2364. if iNdEx >= l {
  2365. return io.ErrUnexpectedEOF
  2366. }
  2367. b := dAtA[iNdEx]
  2368. iNdEx++
  2369. m.Price |= (int64(b) & 0x7F) << shift
  2370. if b < 0x80 {
  2371. break
  2372. }
  2373. }
  2374. case 6:
  2375. if wireType != 2 {
  2376. return fmt.Errorf("proto: wrong wireType = %d for field StartTime", wireType)
  2377. }
  2378. var stringLen uint64
  2379. for shift := uint(0); ; shift += 7 {
  2380. if shift >= 64 {
  2381. return ErrIntOverflowPayGoods
  2382. }
  2383. if iNdEx >= l {
  2384. return io.ErrUnexpectedEOF
  2385. }
  2386. b := dAtA[iNdEx]
  2387. iNdEx++
  2388. stringLen |= (uint64(b) & 0x7F) << shift
  2389. if b < 0x80 {
  2390. break
  2391. }
  2392. }
  2393. intStringLen := int(stringLen)
  2394. if intStringLen < 0 {
  2395. return ErrInvalidLengthPayGoods
  2396. }
  2397. postIndex := iNdEx + intStringLen
  2398. if postIndex > l {
  2399. return io.ErrUnexpectedEOF
  2400. }
  2401. m.StartTime = string(dAtA[iNdEx:postIndex])
  2402. iNdEx = postIndex
  2403. case 7:
  2404. if wireType != 2 {
  2405. return fmt.Errorf("proto: wrong wireType = %d for field EndTime", wireType)
  2406. }
  2407. var stringLen uint64
  2408. for shift := uint(0); ; shift += 7 {
  2409. if shift >= 64 {
  2410. return ErrIntOverflowPayGoods
  2411. }
  2412. if iNdEx >= l {
  2413. return io.ErrUnexpectedEOF
  2414. }
  2415. b := dAtA[iNdEx]
  2416. iNdEx++
  2417. stringLen |= (uint64(b) & 0x7F) << shift
  2418. if b < 0x80 {
  2419. break
  2420. }
  2421. }
  2422. intStringLen := int(stringLen)
  2423. if intStringLen < 0 {
  2424. return ErrInvalidLengthPayGoods
  2425. }
  2426. postIndex := iNdEx + intStringLen
  2427. if postIndex > l {
  2428. return io.ErrUnexpectedEOF
  2429. }
  2430. m.EndTime = string(dAtA[iNdEx:postIndex])
  2431. iNdEx = postIndex
  2432. case 8:
  2433. if wireType != 0 {
  2434. return fmt.Errorf("proto: wrong wireType = %d for field IpLimit", wireType)
  2435. }
  2436. m.IpLimit = 0
  2437. for shift := uint(0); ; shift += 7 {
  2438. if shift >= 64 {
  2439. return ErrIntOverflowPayGoods
  2440. }
  2441. if iNdEx >= l {
  2442. return io.ErrUnexpectedEOF
  2443. }
  2444. b := dAtA[iNdEx]
  2445. iNdEx++
  2446. m.IpLimit |= (int64(b) & 0x7F) << shift
  2447. if b < 0x80 {
  2448. break
  2449. }
  2450. }
  2451. case 9:
  2452. if wireType != 0 {
  2453. return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
  2454. }
  2455. m.Status = 0
  2456. for shift := uint(0); ; shift += 7 {
  2457. if shift >= 64 {
  2458. return ErrIntOverflowPayGoods
  2459. }
  2460. if iNdEx >= l {
  2461. return io.ErrUnexpectedEOF
  2462. }
  2463. b := dAtA[iNdEx]
  2464. iNdEx++
  2465. m.Status |= (int64(b) & 0x7F) << shift
  2466. if b < 0x80 {
  2467. break
  2468. }
  2469. }
  2470. default:
  2471. iNdEx = preIndex
  2472. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2473. if err != nil {
  2474. return err
  2475. }
  2476. if skippy < 0 {
  2477. return ErrInvalidLengthPayGoods
  2478. }
  2479. if (iNdEx + skippy) > l {
  2480. return io.ErrUnexpectedEOF
  2481. }
  2482. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2483. iNdEx += skippy
  2484. }
  2485. }
  2486. if iNdEx > l {
  2487. return io.ErrUnexpectedEOF
  2488. }
  2489. return nil
  2490. }
  2491. func (m *PayGoodsCloseReq) Unmarshal(dAtA []byte) error {
  2492. l := len(dAtA)
  2493. iNdEx := 0
  2494. for iNdEx < l {
  2495. preIndex := iNdEx
  2496. var wire uint64
  2497. for shift := uint(0); ; shift += 7 {
  2498. if shift >= 64 {
  2499. return ErrIntOverflowPayGoods
  2500. }
  2501. if iNdEx >= l {
  2502. return io.ErrUnexpectedEOF
  2503. }
  2504. b := dAtA[iNdEx]
  2505. iNdEx++
  2506. wire |= (uint64(b) & 0x7F) << shift
  2507. if b < 0x80 {
  2508. break
  2509. }
  2510. }
  2511. fieldNum := int32(wire >> 3)
  2512. wireType := int(wire & 0x7)
  2513. if wireType == 4 {
  2514. return fmt.Errorf("proto: PayGoodsCloseReq: wiretype end group for non-group")
  2515. }
  2516. if fieldNum <= 0 {
  2517. return fmt.Errorf("proto: PayGoodsCloseReq: illegal tag %d (wire type %d)", fieldNum, wire)
  2518. }
  2519. switch fieldNum {
  2520. case 1:
  2521. if wireType != 0 {
  2522. return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
  2523. }
  2524. m.Id = 0
  2525. for shift := uint(0); ; shift += 7 {
  2526. if shift >= 64 {
  2527. return ErrIntOverflowPayGoods
  2528. }
  2529. if iNdEx >= l {
  2530. return io.ErrUnexpectedEOF
  2531. }
  2532. b := dAtA[iNdEx]
  2533. iNdEx++
  2534. m.Id |= (int64(b) & 0x7F) << shift
  2535. if b < 0x80 {
  2536. break
  2537. }
  2538. }
  2539. default:
  2540. iNdEx = preIndex
  2541. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2542. if err != nil {
  2543. return err
  2544. }
  2545. if skippy < 0 {
  2546. return ErrInvalidLengthPayGoods
  2547. }
  2548. if (iNdEx + skippy) > l {
  2549. return io.ErrUnexpectedEOF
  2550. }
  2551. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2552. iNdEx += skippy
  2553. }
  2554. }
  2555. if iNdEx > l {
  2556. return io.ErrUnexpectedEOF
  2557. }
  2558. return nil
  2559. }
  2560. func (m *PayGoodsCloseResp) Unmarshal(dAtA []byte) error {
  2561. l := len(dAtA)
  2562. iNdEx := 0
  2563. for iNdEx < l {
  2564. preIndex := iNdEx
  2565. var wire uint64
  2566. for shift := uint(0); ; shift += 7 {
  2567. if shift >= 64 {
  2568. return ErrIntOverflowPayGoods
  2569. }
  2570. if iNdEx >= l {
  2571. return io.ErrUnexpectedEOF
  2572. }
  2573. b := dAtA[iNdEx]
  2574. iNdEx++
  2575. wire |= (uint64(b) & 0x7F) << shift
  2576. if b < 0x80 {
  2577. break
  2578. }
  2579. }
  2580. fieldNum := int32(wire >> 3)
  2581. wireType := int(wire & 0x7)
  2582. if wireType == 4 {
  2583. return fmt.Errorf("proto: PayGoodsCloseResp: wiretype end group for non-group")
  2584. }
  2585. if fieldNum <= 0 {
  2586. return fmt.Errorf("proto: PayGoodsCloseResp: illegal tag %d (wire type %d)", fieldNum, wire)
  2587. }
  2588. switch fieldNum {
  2589. default:
  2590. iNdEx = preIndex
  2591. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2592. if err != nil {
  2593. return err
  2594. }
  2595. if skippy < 0 {
  2596. return ErrInvalidLengthPayGoods
  2597. }
  2598. if (iNdEx + skippy) > l {
  2599. return io.ErrUnexpectedEOF
  2600. }
  2601. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2602. iNdEx += skippy
  2603. }
  2604. }
  2605. if iNdEx > l {
  2606. return io.ErrUnexpectedEOF
  2607. }
  2608. return nil
  2609. }
  2610. func (m *PayGoodsOpenReq) Unmarshal(dAtA []byte) error {
  2611. l := len(dAtA)
  2612. iNdEx := 0
  2613. for iNdEx < l {
  2614. preIndex := iNdEx
  2615. var wire uint64
  2616. for shift := uint(0); ; shift += 7 {
  2617. if shift >= 64 {
  2618. return ErrIntOverflowPayGoods
  2619. }
  2620. if iNdEx >= l {
  2621. return io.ErrUnexpectedEOF
  2622. }
  2623. b := dAtA[iNdEx]
  2624. iNdEx++
  2625. wire |= (uint64(b) & 0x7F) << shift
  2626. if b < 0x80 {
  2627. break
  2628. }
  2629. }
  2630. fieldNum := int32(wire >> 3)
  2631. wireType := int(wire & 0x7)
  2632. if wireType == 4 {
  2633. return fmt.Errorf("proto: PayGoodsOpenReq: wiretype end group for non-group")
  2634. }
  2635. if fieldNum <= 0 {
  2636. return fmt.Errorf("proto: PayGoodsOpenReq: illegal tag %d (wire type %d)", fieldNum, wire)
  2637. }
  2638. switch fieldNum {
  2639. case 1:
  2640. if wireType != 0 {
  2641. return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
  2642. }
  2643. m.Id = 0
  2644. for shift := uint(0); ; shift += 7 {
  2645. if shift >= 64 {
  2646. return ErrIntOverflowPayGoods
  2647. }
  2648. if iNdEx >= l {
  2649. return io.ErrUnexpectedEOF
  2650. }
  2651. b := dAtA[iNdEx]
  2652. iNdEx++
  2653. m.Id |= (int64(b) & 0x7F) << shift
  2654. if b < 0x80 {
  2655. break
  2656. }
  2657. }
  2658. default:
  2659. iNdEx = preIndex
  2660. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2661. if err != nil {
  2662. return err
  2663. }
  2664. if skippy < 0 {
  2665. return ErrInvalidLengthPayGoods
  2666. }
  2667. if (iNdEx + skippy) > l {
  2668. return io.ErrUnexpectedEOF
  2669. }
  2670. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2671. iNdEx += skippy
  2672. }
  2673. }
  2674. if iNdEx > l {
  2675. return io.ErrUnexpectedEOF
  2676. }
  2677. return nil
  2678. }
  2679. func (m *PayGoodsOpenResp) Unmarshal(dAtA []byte) error {
  2680. l := len(dAtA)
  2681. iNdEx := 0
  2682. for iNdEx < l {
  2683. preIndex := iNdEx
  2684. var wire uint64
  2685. for shift := uint(0); ; shift += 7 {
  2686. if shift >= 64 {
  2687. return ErrIntOverflowPayGoods
  2688. }
  2689. if iNdEx >= l {
  2690. return io.ErrUnexpectedEOF
  2691. }
  2692. b := dAtA[iNdEx]
  2693. iNdEx++
  2694. wire |= (uint64(b) & 0x7F) << shift
  2695. if b < 0x80 {
  2696. break
  2697. }
  2698. }
  2699. fieldNum := int32(wire >> 3)
  2700. wireType := int(wire & 0x7)
  2701. if wireType == 4 {
  2702. return fmt.Errorf("proto: PayGoodsOpenResp: wiretype end group for non-group")
  2703. }
  2704. if fieldNum <= 0 {
  2705. return fmt.Errorf("proto: PayGoodsOpenResp: illegal tag %d (wire type %d)", fieldNum, wire)
  2706. }
  2707. switch fieldNum {
  2708. default:
  2709. iNdEx = preIndex
  2710. skippy, err := skipPayGoods(dAtA[iNdEx:])
  2711. if err != nil {
  2712. return err
  2713. }
  2714. if skippy < 0 {
  2715. return ErrInvalidLengthPayGoods
  2716. }
  2717. if (iNdEx + skippy) > l {
  2718. return io.ErrUnexpectedEOF
  2719. }
  2720. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  2721. iNdEx += skippy
  2722. }
  2723. }
  2724. if iNdEx > l {
  2725. return io.ErrUnexpectedEOF
  2726. }
  2727. return nil
  2728. }
  2729. func skipPayGoods(dAtA []byte) (n int, err error) {
  2730. l := len(dAtA)
  2731. iNdEx := 0
  2732. for iNdEx < l {
  2733. var wire uint64
  2734. for shift := uint(0); ; shift += 7 {
  2735. if shift >= 64 {
  2736. return 0, ErrIntOverflowPayGoods
  2737. }
  2738. if iNdEx >= l {
  2739. return 0, io.ErrUnexpectedEOF
  2740. }
  2741. b := dAtA[iNdEx]
  2742. iNdEx++
  2743. wire |= (uint64(b) & 0x7F) << shift
  2744. if b < 0x80 {
  2745. break
  2746. }
  2747. }
  2748. wireType := int(wire & 0x7)
  2749. switch wireType {
  2750. case 0:
  2751. for shift := uint(0); ; shift += 7 {
  2752. if shift >= 64 {
  2753. return 0, ErrIntOverflowPayGoods
  2754. }
  2755. if iNdEx >= l {
  2756. return 0, io.ErrUnexpectedEOF
  2757. }
  2758. iNdEx++
  2759. if dAtA[iNdEx-1] < 0x80 {
  2760. break
  2761. }
  2762. }
  2763. return iNdEx, nil
  2764. case 1:
  2765. iNdEx += 8
  2766. return iNdEx, nil
  2767. case 2:
  2768. var length int
  2769. for shift := uint(0); ; shift += 7 {
  2770. if shift >= 64 {
  2771. return 0, ErrIntOverflowPayGoods
  2772. }
  2773. if iNdEx >= l {
  2774. return 0, io.ErrUnexpectedEOF
  2775. }
  2776. b := dAtA[iNdEx]
  2777. iNdEx++
  2778. length |= (int(b) & 0x7F) << shift
  2779. if b < 0x80 {
  2780. break
  2781. }
  2782. }
  2783. iNdEx += length
  2784. if length < 0 {
  2785. return 0, ErrInvalidLengthPayGoods
  2786. }
  2787. return iNdEx, nil
  2788. case 3:
  2789. for {
  2790. var innerWire uint64
  2791. var start int = iNdEx
  2792. for shift := uint(0); ; shift += 7 {
  2793. if shift >= 64 {
  2794. return 0, ErrIntOverflowPayGoods
  2795. }
  2796. if iNdEx >= l {
  2797. return 0, io.ErrUnexpectedEOF
  2798. }
  2799. b := dAtA[iNdEx]
  2800. iNdEx++
  2801. innerWire |= (uint64(b) & 0x7F) << shift
  2802. if b < 0x80 {
  2803. break
  2804. }
  2805. }
  2806. innerWireType := int(innerWire & 0x7)
  2807. if innerWireType == 4 {
  2808. break
  2809. }
  2810. next, err := skipPayGoods(dAtA[start:])
  2811. if err != nil {
  2812. return 0, err
  2813. }
  2814. iNdEx = start + next
  2815. }
  2816. return iNdEx, nil
  2817. case 4:
  2818. return iNdEx, nil
  2819. case 5:
  2820. iNdEx += 4
  2821. return iNdEx, nil
  2822. default:
  2823. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  2824. }
  2825. }
  2826. panic("unreachable")
  2827. }
  2828. var (
  2829. ErrInvalidLengthPayGoods = fmt.Errorf("proto: negative length found during unmarshaling")
  2830. ErrIntOverflowPayGoods = fmt.Errorf("proto: integer overflow")
  2831. )
  2832. func init() { proto.RegisterFile("payGoods.proto", fileDescriptor_payGoods_e218bc978cecad93) }
  2833. var fileDescriptor_payGoods_e218bc978cecad93 = []byte{
  2834. // 909 bytes of a gzipped FileDescriptorProto
  2835. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4d, 0x6f, 0x23, 0x35,
  2836. 0x18, 0x26, 0x93, 0xe6, 0xcb, 0xdd, 0xed, 0x87, 0x5b, 0x50, 0x14, 0xb1, 0x75, 0x76, 0xd2, 0x2f,
  2837. 0x0e, 0x3b, 0xdd, 0x16, 0x24, 0xa4, 0xde, 0xc8, 0x82, 0x16, 0xa4, 0x8a, 0x5d, 0x0d, 0xac, 0x84,
  2838. 0xe0, 0x10, 0x4d, 0x3b, 0xee, 0x60, 0x29, 0x99, 0x71, 0x63, 0xa7, 0x52, 0xf9, 0x13, 0xfc, 0x13,
  2839. 0xc4, 0x8f, 0xe0, 0xb0, 0x47, 0xc4, 0x0f, 0xb0, 0xa0, 0xc7, 0x39, 0x70, 0x98, 0x5f, 0x80, 0xe6,
  2840. 0xf5, 0x38, 0xe3, 0x6c, 0xd2, 0x36, 0xe2, 0xb4, 0x97, 0xd6, 0x7e, 0xfc, 0xbc, 0x8f, 0xed, 0xf7,
  2841. 0x79, 0x5f, 0x4f, 0xd0, 0x1a, 0x0f, 0x6e, 0x5e, 0x26, 0x49, 0x28, 0x3c, 0x3e, 0x4e, 0x64, 0x82,
  2842. 0x37, 0x87, 0xec, 0x9a, 0x7a, 0xf9, 0x9f, 0x20, 0x1c, 0xb1, 0xd8, 0xbb, 0x3e, 0xee, 0x3c, 0x8b,
  2843. 0x98, 0xfc, 0x79, 0x72, 0xee, 0x5d, 0x24, 0xa3, 0xa3, 0x28, 0x89, 0x92, 0x23, 0x60, 0x9e, 0x4f,
  2844. 0x2e, 0x61, 0x06, 0x13, 0x18, 0x69, 0x05, 0xf7, 0xf7, 0x2a, 0x5a, 0x7b, 0x5d, 0x88, 0x7e, 0x11,
  2845. 0x86, 0x3e, 0xbd, 0xc2, 0x47, 0xa8, 0xc9, 0x87, 0x81, 0xbc, 0x4c, 0xc6, 0xa3, 0x76, 0xa5, 0x5b,
  2846. 0x39, 0x6c, 0xf5, 0xb7, 0x32, 0x45, 0xd6, 0xf3, 0xf9, 0xa9, 0x6b, 0x56, 0x5c, 0x7f, 0x4a, 0xc2,
  2847. 0xa7, 0xa8, 0x26, 0x99, 0x1c, 0xd2, 0xb6, 0x03, 0xec, 0xdd, 0x4c, 0x91, 0xae, 0x66, 0x03, 0xec,
  2848. 0x76, 0xaf, 0x83, 0x21, 0x0b, 0x03, 0x49, 0x4f, 0xdd, 0x31, 0xbd, 0x9a, 0xb0, 0x31, 0x0d, 0x5d,
  2849. 0x5f, 0x87, 0xe0, 0xcf, 0xd1, 0x8a, 0xbc, 0xe1, 0xb4, 0x5d, 0xed, 0x56, 0x0e, 0xab, 0xfd, 0x5e,
  2850. 0xa6, 0x08, 0x29, 0x42, 0x6f, 0xf8, 0x1d, 0x91, 0x10, 0x90, 0x6f, 0xca, 0xc7, 0xec, 0x82, 0xb6,
  2851. 0x57, 0x20, 0xd2, 0xda, 0x14, 0xe0, 0x3b, 0x36, 0x85, 0x35, 0xfc, 0x35, 0x42, 0x42, 0x06, 0x63,
  2852. 0x39, 0x90, 0x6c, 0x44, 0xdb, 0x35, 0x38, 0xf5, 0x27, 0x99, 0x22, 0x7b, 0x5a, 0xa0, 0x5c, 0x5b,
  2853. 0xac, 0xd2, 0x02, 0xc2, 0xf7, 0x6c, 0x44, 0x71, 0x1f, 0x35, 0x69, 0x1c, 0x6a, 0x9d, 0x3a, 0xe8,
  2854. 0x1c, 0x64, 0x8a, 0xf4, 0xb4, 0x8e, 0x59, 0x59, 0xac, 0xd2, 0xa0, 0x71, 0x08, 0x1a, 0x1e, 0x6a,
  2855. 0x32, 0x3e, 0x18, 0xb2, 0x11, 0x93, 0xed, 0x06, 0x5c, 0xc6, 0xca, 0xb7, 0x59, 0x71, 0xfd, 0x06,
  2856. 0xe3, 0x67, 0x30, 0xda, 0x44, 0xeb, 0x33, 0x8e, 0x09, 0xee, 0xfe, 0xeb, 0xa0, 0x4d, 0x83, 0xbd,
  2857. 0xe1, 0xf9, 0x4e, 0xb9, 0x91, 0x4f, 0x90, 0xc3, 0x42, 0xb0, 0xb0, 0xda, 0x7f, 0x9c, 0x29, 0xd2,
  2858. 0x2a, 0x24, 0x43, 0xd7, 0x77, 0x58, 0x38, 0xe3, 0xb3, 0xb3, 0x8c, 0xcf, 0xfb, 0xc6, 0xe7, 0x2a,
  2859. 0xb0, 0x37, 0x32, 0x45, 0x1e, 0xd9, 0x3e, 0x1b, 0x4f, 0x7b, 0x85, 0xa7, 0xda, 0x99, 0xf5, 0x4c,
  2860. 0x91, 0x55, 0xcb, 0xd3, 0xc2, 0xbf, 0x7d, 0xe3, 0x5f, 0x0d, 0x58, 0x96, 0x98, 0xf6, 0xcf, 0x78,
  2861. 0xf5, 0xd9, 0x8c, 0x57, 0x3a, 0xc7, 0x1f, 0x66, 0x8a, 0x6c, 0xce, 0x79, 0x65, 0xfb, 0xe2, 0x59,
  2862. 0xbe, 0x34, 0xde, 0xbd, 0xdb, 0xd4, 0x97, 0xc5, 0x1e, 0x34, 0x97, 0xf0, 0x60, 0x1b, 0xe1, 0x77,
  2863. 0xf3, 0x2d, 0xb8, 0xfb, 0x87, 0x53, 0xc2, 0x2f, 0xa9, 0x3c, 0x63, 0x42, 0xbe, 0xf7, 0x3e, 0xd8,
  2864. 0x37, 0xaf, 0x3d, 0x7c, 0xf3, 0x9c, 0xcf, 0x83, 0x88, 0x0e, 0xe2, 0xc9, 0x08, 0xdc, 0x98, 0xe1,
  2865. 0x9b, 0x15, 0xd7, 0x6f, 0xe4, 0xc3, 0x6f, 0x27, 0x23, 0x7c, 0x8c, 0x5a, 0x80, 0x0a, 0xf6, 0x0b,
  2866. 0x2d, 0xca, 0x7b, 0x3b, 0x53, 0x64, 0xc3, 0x0a, 0xc8, 0x97, 0xf2, 0xfb, 0x05, 0x11, 0xfd, 0x2e,
  2867. 0x1f, 0xfe, 0x5a, 0x43, 0x5b, 0x73, 0x69, 0x14, 0x1c, 0xff, 0x54, 0x48, 0xb1, 0xf8, 0x32, 0x81,
  2868. 0x74, 0xae, 0x9e, 0x1c, 0x79, 0x73, 0x2f, 0xa0, 0xb7, 0x20, 0xd4, 0x7b, 0x1d, 0x44, 0xf4, 0x9b,
  2869. 0xf8, 0x32, 0xe9, 0x3f, 0x4e, 0x15, 0x29, 0x55, 0xf4, 0xa6, 0xf9, 0x02, 0x1e, 0x20, 0x14, 0xe5,
  2870. 0x51, 0x5a, 0xdd, 0xe9, 0x56, 0x0f, 0x57, 0x4f, 0x9e, 0x2f, 0xa9, 0x0e, 0x00, 0xc8, 0xaf, 0xa5,
  2871. 0x8a, 0x58, 0x3a, 0x7e, 0x2b, 0x32, 0x4b, 0x1d, 0x8a, 0x9a, 0xe6, 0x14, 0xf8, 0x39, 0x5a, 0x95,
  2872. 0x89, 0x0c, 0x86, 0x83, 0x8b, 0x64, 0x12, 0xcb, 0xa2, 0x34, 0xd6, 0x53, 0x45, 0x6c, 0xd8, 0x47,
  2873. 0x30, 0x79, 0x91, 0x8f, 0xf1, 0x81, 0x95, 0x76, 0x07, 0xe8, 0x8f, 0x52, 0x45, 0xa6, 0xd8, 0x34,
  2874. 0xdf, 0x9d, 0xbf, 0x1c, 0xd4, 0x9a, 0x9e, 0x07, 0x7f, 0x64, 0x95, 0x5e, 0x3d, 0x55, 0xc4, 0x61,
  2875. 0x21, 0xd4, 0x1c, 0x99, 0x7d, 0xb2, 0x5b, 0xa9, 0x22, 0x1a, 0x30, 0xb5, 0x73, 0x68, 0x15, 0xa5,
  2876. 0x2e, 0x33, 0xbd, 0x5f, 0x81, 0x59, 0xd5, 0xf8, 0xf1, 0x4c, 0x95, 0x35, 0x53, 0x45, 0x60, 0x5e,
  2877. 0x94, 0x17, 0x99, 0x6d, 0x73, 0xd8, 0x08, 0x00, 0xd3, 0xdf, 0xcf, 0x16, 0xf4, 0x37, 0x64, 0xb1,
  2878. 0x44, 0xed, 0xc6, 0x3e, 0x98, 0x6b, 0x6c, 0x38, 0x97, 0xc1, 0xca, 0x8e, 0x3e, 0x98, 0xeb, 0x68,
  2879. 0x20, 0x1a, 0xac, 0x2c, 0x68, 0x17, 0xd5, 0x85, 0x0c, 0xe4, 0x44, 0xb4, 0x5b, 0x40, 0x43, 0xa9,
  2880. 0x22, 0x05, 0xe2, 0x17, 0xff, 0xdd, 0xaf, 0xd0, 0x86, 0xf1, 0xfd, 0xc5, 0x30, 0x11, 0xf0, 0xba,
  2881. 0x1e, 0x5b, 0xa9, 0x7d, 0x9a, 0x29, 0xf2, 0x64, 0xda, 0xd5, 0x0b, 0x9f, 0x7b, 0x87, 0x85, 0xee,
  2882. 0x56, 0xf9, 0x4a, 0x17, 0x32, 0x82, 0xbb, 0x5f, 0x96, 0xcf, 0xf9, 0x2b, 0x4e, 0xe3, 0xff, 0x29,
  2883. 0x8d, 0xcb, 0x13, 0x6a, 0x15, 0xc1, 0x4f, 0x7e, 0xab, 0xe6, 0x25, 0xa7, 0x41, 0x7c, 0x86, 0xaa,
  2884. 0x41, 0x18, 0xe2, 0xa7, 0xf7, 0x94, 0xb4, 0xfe, 0xfe, 0x77, 0xdc, 0x87, 0x28, 0x82, 0xe3, 0x37,
  2885. 0xa8, 0x3e, 0x81, 0x77, 0x0f, 0xef, 0xde, 0xc3, 0x9e, 0x7e, 0x8a, 0x3a, 0x7b, 0x4b, 0xb0, 0x04,
  2886. 0xc7, 0x3f, 0xa0, 0x46, 0xa4, 0xfb, 0x0a, 0xef, 0x2d, 0xd3, 0x7b, 0x57, 0x9d, 0xfd, 0xe5, 0x5a,
  2887. 0x14, 0xfb, 0xa8, 0x76, 0x91, 0xa7, 0x1c, 0xf7, 0xee, 0x09, 0x30, 0xde, 0x76, 0x76, 0x1f, 0x26,
  2888. 0x09, 0x8e, 0x5f, 0xa1, 0x95, 0x84, 0xd3, 0x18, 0xdf, 0x97, 0xb0, 0xc2, 0xd2, 0x4e, 0xef, 0x41,
  2889. 0x8e, 0xe0, 0xfd, 0xed, 0xb7, 0xff, 0xec, 0x7c, 0xf0, 0xf6, 0x76, 0xa7, 0xf2, 0xe7, 0xed, 0x4e,
  2890. 0xe5, 0xef, 0xdb, 0x9d, 0xca, 0x8f, 0xce, 0xf5, 0xf1, 0x79, 0x1d, 0x7e, 0xa9, 0x7d, 0xfa, 0x5f,
  2891. 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0x27, 0x95, 0xa8, 0xfd, 0x09, 0x00, 0x00,
  2892. }