copy.go 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  1. // +build !ignore_autogenerated
  2. // Code generated by deepcopy-gen. DO NOT EDIT.
  3. package api
  4. import (
  5. model "go-common/app/service/main/tv/internal/model"
  6. )
  7. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  8. func (in *ChangeHistoryReply) DeepCopyInto(out *ChangeHistoryReply) {
  9. *out = *in
  10. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  11. if in.XXX_unrecognized != nil {
  12. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  13. *out = make([]byte, len(*in))
  14. copy(*out, *in)
  15. }
  16. return
  17. }
  18. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChangeHistoryReply.
  19. func (in *ChangeHistoryReply) DeepCopy() *ChangeHistoryReply {
  20. if in == nil {
  21. return nil
  22. }
  23. out := new(ChangeHistoryReply)
  24. in.DeepCopyInto(out)
  25. return out
  26. }
  27. // DeepCopyAsIntoUserChangeHistory is an autogenerated deepcopy function, copying the receiver, writing into model.UserChangeHistory.
  28. func (in *ChangeHistoryReply) DeepCopyAsIntoUserChangeHistory(out *model.UserChangeHistory) {
  29. out.ChangeType = in.ChangeType
  30. out.ChangeTime = in.ChangeTime
  31. out.OrderNo = in.OrderNo
  32. out.Days = in.Days
  33. out.OperatorId = in.OperatorId
  34. out.Ctime = in.Ctime
  35. out.Mtime = in.Mtime
  36. return
  37. }
  38. // DeepCopyFromUserChangeHistory is an autogenerated deepcopy function, copying the receiver, writing into model.UserChangeHistory.
  39. func (out *ChangeHistoryReply) DeepCopyFromUserChangeHistory(in *model.UserChangeHistory) {
  40. out.ChangeType = in.ChangeType
  41. out.ChangeTime = in.ChangeTime
  42. out.OrderNo = in.OrderNo
  43. out.Days = in.Days
  44. out.OperatorId = in.OperatorId
  45. out.Ctime = in.Ctime
  46. out.Mtime = in.Mtime
  47. return
  48. }
  49. // DeepCopyAsUserChangeHistory is an autogenerated deepcopy function, copying the receiver, creating a new model.UserChangeHistory.
  50. func (in *ChangeHistoryReply) DeepCopyAsUserChangeHistory() *model.UserChangeHistory {
  51. if in == nil {
  52. return nil
  53. }
  54. out := new(model.UserChangeHistory)
  55. in.DeepCopyAsIntoUserChangeHistory(out)
  56. return out
  57. }
  58. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  59. func (in *ChangeHistoryReq) DeepCopyInto(out *ChangeHistoryReq) {
  60. *out = *in
  61. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  62. if in.XXX_unrecognized != nil {
  63. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  64. *out = make([]byte, len(*in))
  65. copy(*out, *in)
  66. }
  67. return
  68. }
  69. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChangeHistoryReq.
  70. func (in *ChangeHistoryReq) DeepCopy() *ChangeHistoryReq {
  71. if in == nil {
  72. return nil
  73. }
  74. out := new(ChangeHistoryReq)
  75. in.DeepCopyInto(out)
  76. return out
  77. }
  78. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  79. func (in *ChangeHistorysReply) DeepCopyInto(out *ChangeHistorysReply) {
  80. *out = *in
  81. if in.Historys != nil {
  82. in, out := &in.Historys, &out.Historys
  83. *out = make([]*ChangeHistoryReply, len(*in))
  84. for i := range *in {
  85. if (*in)[i] != nil {
  86. in, out := &(*in)[i], &(*out)[i]
  87. *out = new(ChangeHistoryReply)
  88. (*in).DeepCopyInto(*out)
  89. }
  90. }
  91. }
  92. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  93. if in.XXX_unrecognized != nil {
  94. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  95. *out = make([]byte, len(*in))
  96. copy(*out, *in)
  97. }
  98. return
  99. }
  100. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChangeHistorysReply.
  101. func (in *ChangeHistorysReply) DeepCopy() *ChangeHistorysReply {
  102. if in == nil {
  103. return nil
  104. }
  105. out := new(ChangeHistorysReply)
  106. in.DeepCopyInto(out)
  107. return out
  108. }
  109. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  110. func (in *ChangeHistorysReq) DeepCopyInto(out *ChangeHistorysReq) {
  111. *out = *in
  112. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  113. if in.XXX_unrecognized != nil {
  114. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  115. *out = make([]byte, len(*in))
  116. copy(*out, *in)
  117. }
  118. return
  119. }
  120. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChangeHistorysReq.
  121. func (in *ChangeHistorysReq) DeepCopy() *ChangeHistorysReq {
  122. if in == nil {
  123. return nil
  124. }
  125. out := new(ChangeHistorysReq)
  126. in.DeepCopyInto(out)
  127. return out
  128. }
  129. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  130. func (in *CreateGuestOrderReply) DeepCopyInto(out *CreateGuestOrderReply) {
  131. *out = *in
  132. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  133. if in.XXX_unrecognized != nil {
  134. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  135. *out = make([]byte, len(*in))
  136. copy(*out, *in)
  137. }
  138. return
  139. }
  140. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateGuestOrderReply.
  141. func (in *CreateGuestOrderReply) DeepCopy() *CreateGuestOrderReply {
  142. if in == nil {
  143. return nil
  144. }
  145. out := new(CreateGuestOrderReply)
  146. in.DeepCopyInto(out)
  147. return out
  148. }
  149. // DeepCopyAsIntoPayInfo is an autogenerated deepcopy function, copying the receiver, writing into model.PayInfo.
  150. func (in *CreateGuestOrderReply) DeepCopyAsIntoPayInfo(out *model.PayInfo) {
  151. out.OrderNo = in.OrderNo
  152. out.PaymentType = in.PaymentType
  153. out.CodeUrl = in.CodeUrl
  154. out.PaymentMoney = in.PaymentMoney
  155. return
  156. }
  157. // DeepCopyFromPayInfo is an autogenerated deepcopy function, copying the receiver, writing into model.PayInfo.
  158. func (out *CreateGuestOrderReply) DeepCopyFromPayInfo(in *model.PayInfo) {
  159. out.OrderNo = in.OrderNo
  160. out.PaymentType = in.PaymentType
  161. out.CodeUrl = in.CodeUrl
  162. out.PaymentMoney = in.PaymentMoney
  163. return
  164. }
  165. // DeepCopyAsPayInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.PayInfo.
  166. func (in *CreateGuestOrderReply) DeepCopyAsPayInfo() *model.PayInfo {
  167. if in == nil {
  168. return nil
  169. }
  170. out := new(model.PayInfo)
  171. in.DeepCopyAsIntoPayInfo(out)
  172. return out
  173. }
  174. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  175. func (in *CreateGuestOrderReq) DeepCopyInto(out *CreateGuestOrderReq) {
  176. *out = *in
  177. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  178. if in.XXX_unrecognized != nil {
  179. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  180. *out = make([]byte, len(*in))
  181. copy(*out, *in)
  182. }
  183. return
  184. }
  185. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateGuestOrderReq.
  186. func (in *CreateGuestOrderReq) DeepCopy() *CreateGuestOrderReq {
  187. if in == nil {
  188. return nil
  189. }
  190. out := new(CreateGuestOrderReq)
  191. in.DeepCopyInto(out)
  192. return out
  193. }
  194. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  195. func (in *CreateGuestQrReply) DeepCopyInto(out *CreateGuestQrReply) {
  196. *out = *in
  197. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  198. if in.XXX_unrecognized != nil {
  199. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  200. *out = make([]byte, len(*in))
  201. copy(*out, *in)
  202. }
  203. return
  204. }
  205. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateGuestQrReply.
  206. func (in *CreateGuestQrReply) DeepCopy() *CreateGuestQrReply {
  207. if in == nil {
  208. return nil
  209. }
  210. out := new(CreateGuestQrReply)
  211. in.DeepCopyInto(out)
  212. return out
  213. }
  214. // DeepCopyAsIntoQR is an autogenerated deepcopy function, copying the receiver, writing into model.QR.
  215. func (in *CreateGuestQrReply) DeepCopyAsIntoQR(out *model.QR) {
  216. out.Token = in.Token
  217. return
  218. }
  219. // DeepCopyFromQR is an autogenerated deepcopy function, copying the receiver, writing into model.QR.
  220. func (out *CreateGuestQrReply) DeepCopyFromQR(in *model.QR) {
  221. out.Url = in.URL
  222. out.ExpireAt = in.ExpireAt
  223. out.Token = in.Token
  224. return
  225. }
  226. // DeepCopyAsQR is an autogenerated deepcopy function, copying the receiver, creating a new model.QR.
  227. func (in *CreateGuestQrReply) DeepCopyAsQR() *model.QR {
  228. if in == nil {
  229. return nil
  230. }
  231. out := new(model.QR)
  232. in.DeepCopyAsIntoQR(out)
  233. return out
  234. }
  235. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  236. func (in *CreateGuestQrReq) DeepCopyInto(out *CreateGuestQrReq) {
  237. *out = *in
  238. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  239. if in.XXX_unrecognized != nil {
  240. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  241. *out = make([]byte, len(*in))
  242. copy(*out, *in)
  243. }
  244. return
  245. }
  246. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateGuestQrReq.
  247. func (in *CreateGuestQrReq) DeepCopy() *CreateGuestQrReq {
  248. if in == nil {
  249. return nil
  250. }
  251. out := new(CreateGuestQrReq)
  252. in.DeepCopyInto(out)
  253. return out
  254. }
  255. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  256. func (in *CreateOrderReply) DeepCopyInto(out *CreateOrderReply) {
  257. *out = *in
  258. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  259. if in.XXX_unrecognized != nil {
  260. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  261. *out = make([]byte, len(*in))
  262. copy(*out, *in)
  263. }
  264. return
  265. }
  266. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateOrderReply.
  267. func (in *CreateOrderReply) DeepCopy() *CreateOrderReply {
  268. if in == nil {
  269. return nil
  270. }
  271. out := new(CreateOrderReply)
  272. in.DeepCopyInto(out)
  273. return out
  274. }
  275. // DeepCopyAsIntoPayInfo is an autogenerated deepcopy function, copying the receiver, writing into model.PayInfo.
  276. func (in *CreateOrderReply) DeepCopyAsIntoPayInfo(out *model.PayInfo) {
  277. out.OrderNo = in.OrderNo
  278. out.PaymentType = in.PaymentType
  279. out.CodeUrl = in.CodeUrl
  280. out.PaymentMoney = in.PaymentMoney
  281. return
  282. }
  283. // DeepCopyFromPayInfo is an autogenerated deepcopy function, copying the receiver, writing into model.PayInfo.
  284. func (out *CreateOrderReply) DeepCopyFromPayInfo(in *model.PayInfo) {
  285. out.OrderNo = in.OrderNo
  286. out.PaymentType = in.PaymentType
  287. out.CodeUrl = in.CodeUrl
  288. out.PaymentMoney = in.PaymentMoney
  289. return
  290. }
  291. // DeepCopyAsPayInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.PayInfo.
  292. func (in *CreateOrderReply) DeepCopyAsPayInfo() *model.PayInfo {
  293. if in == nil {
  294. return nil
  295. }
  296. out := new(model.PayInfo)
  297. in.DeepCopyAsIntoPayInfo(out)
  298. return out
  299. }
  300. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  301. func (in *CreateOrderReq) DeepCopyInto(out *CreateOrderReq) {
  302. *out = *in
  303. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  304. if in.XXX_unrecognized != nil {
  305. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  306. *out = make([]byte, len(*in))
  307. copy(*out, *in)
  308. }
  309. return
  310. }
  311. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateOrderReq.
  312. func (in *CreateOrderReq) DeepCopy() *CreateOrderReq {
  313. if in == nil {
  314. return nil
  315. }
  316. out := new(CreateOrderReq)
  317. in.DeepCopyInto(out)
  318. return out
  319. }
  320. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  321. func (in *CreateQrReply) DeepCopyInto(out *CreateQrReply) {
  322. *out = *in
  323. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  324. if in.XXX_unrecognized != nil {
  325. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  326. *out = make([]byte, len(*in))
  327. copy(*out, *in)
  328. }
  329. return
  330. }
  331. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateQrReply.
  332. func (in *CreateQrReply) DeepCopy() *CreateQrReply {
  333. if in == nil {
  334. return nil
  335. }
  336. out := new(CreateQrReply)
  337. in.DeepCopyInto(out)
  338. return out
  339. }
  340. // DeepCopyAsIntoQR is an autogenerated deepcopy function, copying the receiver, writing into model.QR.
  341. func (in *CreateQrReply) DeepCopyAsIntoQR(out *model.QR) {
  342. out.Token = in.Token
  343. return
  344. }
  345. // DeepCopyFromQR is an autogenerated deepcopy function, copying the receiver, writing into model.QR.
  346. func (out *CreateQrReply) DeepCopyFromQR(in *model.QR) {
  347. out.Url = in.URL
  348. out.ExpireAt = in.ExpireAt
  349. out.Token = in.Token
  350. return
  351. }
  352. // DeepCopyAsQR is an autogenerated deepcopy function, copying the receiver, creating a new model.QR.
  353. func (in *CreateQrReply) DeepCopyAsQR() *model.QR {
  354. if in == nil {
  355. return nil
  356. }
  357. out := new(model.QR)
  358. in.DeepCopyAsIntoQR(out)
  359. return out
  360. }
  361. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  362. func (in *CreateQrReq) DeepCopyInto(out *CreateQrReq) {
  363. *out = *in
  364. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  365. if in.XXX_unrecognized != nil {
  366. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  367. *out = make([]byte, len(*in))
  368. copy(*out, *in)
  369. }
  370. return
  371. }
  372. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreateQrReq.
  373. func (in *CreateQrReq) DeepCopy() *CreateQrReq {
  374. if in == nil {
  375. return nil
  376. }
  377. out := new(CreateQrReq)
  378. in.DeepCopyInto(out)
  379. return out
  380. }
  381. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  382. func (in *GuestPanelInfoReq) DeepCopyInto(out *GuestPanelInfoReq) {
  383. *out = *in
  384. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  385. if in.XXX_unrecognized != nil {
  386. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  387. *out = make([]byte, len(*in))
  388. copy(*out, *in)
  389. }
  390. return
  391. }
  392. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GuestPanelInfoReq.
  393. func (in *GuestPanelInfoReq) DeepCopy() *GuestPanelInfoReq {
  394. if in == nil {
  395. return nil
  396. }
  397. out := new(GuestPanelInfoReq)
  398. in.DeepCopyInto(out)
  399. return out
  400. }
  401. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  402. func (in *PanelInfoReq) DeepCopyInto(out *PanelInfoReq) {
  403. *out = *in
  404. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  405. if in.XXX_unrecognized != nil {
  406. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  407. *out = make([]byte, len(*in))
  408. copy(*out, *in)
  409. }
  410. return
  411. }
  412. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PanelInfoReq.
  413. func (in *PanelInfoReq) DeepCopy() *PanelInfoReq {
  414. if in == nil {
  415. return nil
  416. }
  417. out := new(PanelInfoReq)
  418. in.DeepCopyInto(out)
  419. return out
  420. }
  421. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  422. func (in *PanelPriceConfig) DeepCopyInto(out *PanelPriceConfig) {
  423. *out = *in
  424. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  425. if in.XXX_unrecognized != nil {
  426. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  427. *out = make([]byte, len(*in))
  428. copy(*out, *in)
  429. }
  430. return
  431. }
  432. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PanelPriceConfig.
  433. func (in *PanelPriceConfig) DeepCopy() *PanelPriceConfig {
  434. if in == nil {
  435. return nil
  436. }
  437. out := new(PanelPriceConfig)
  438. in.DeepCopyInto(out)
  439. return out
  440. }
  441. // DeepCopyAsIntoPanelPriceConfig is an autogenerated deepcopy function, copying the receiver, writing into model.PanelPriceConfig.
  442. func (in *PanelPriceConfig) DeepCopyAsIntoPanelPriceConfig(out *model.PanelPriceConfig) {
  443. out.OriginPrice = in.OriginPrice
  444. out.MaxNum = in.MaxNum
  445. return
  446. }
  447. // DeepCopyFromPanelPriceConfig is an autogenerated deepcopy function, copying the receiver, writing into model.PanelPriceConfig.
  448. func (out *PanelPriceConfig) DeepCopyFromPanelPriceConfig(in *model.PanelPriceConfig) {
  449. out.Id = in.ID
  450. out.Pid = in.Pid
  451. out.Platform = in.Platform
  452. out.ProductName = in.ProductName
  453. out.SuitType = in.SubType
  454. out.Month = in.Month
  455. out.SubType = in.SubType
  456. out.Price = in.Price
  457. out.Remark = in.Remark
  458. out.Status = in.Status
  459. out.Superscript = in.Superscript
  460. out.MaxNum = in.MaxNum
  461. out.OriginPrice = in.OriginPrice
  462. return
  463. }
  464. // DeepCopyAsPanelPriceConfig is an autogenerated deepcopy function, copying the receiver, creating a new model.PanelPriceConfig.
  465. func (in *PanelPriceConfig) DeepCopyAsPanelPriceConfig() *model.PanelPriceConfig {
  466. if in == nil {
  467. return nil
  468. }
  469. out := new(model.PanelPriceConfig)
  470. in.DeepCopyAsIntoPanelPriceConfig(out)
  471. return out
  472. }
  473. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  474. func (in *PanelPriceConfigs) DeepCopyInto(out *PanelPriceConfigs) {
  475. *out = *in
  476. if in.PriceConfigs != nil {
  477. in, out := &in.PriceConfigs, &out.PriceConfigs
  478. *out = make([]*PanelPriceConfig, len(*in))
  479. for i := range *in {
  480. if (*in)[i] != nil {
  481. in, out := &(*in)[i], &(*out)[i]
  482. *out = new(PanelPriceConfig)
  483. (*in).DeepCopyInto(*out)
  484. }
  485. }
  486. }
  487. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  488. if in.XXX_unrecognized != nil {
  489. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  490. *out = make([]byte, len(*in))
  491. copy(*out, *in)
  492. }
  493. return
  494. }
  495. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PanelPriceConfigs.
  496. func (in *PanelPriceConfigs) DeepCopy() *PanelPriceConfigs {
  497. if in == nil {
  498. return nil
  499. }
  500. out := new(PanelPriceConfigs)
  501. in.DeepCopyInto(out)
  502. return out
  503. }
  504. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  505. func (in *PayCallbackReply) DeepCopyInto(out *PayCallbackReply) {
  506. *out = *in
  507. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  508. if in.XXX_unrecognized != nil {
  509. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  510. *out = make([]byte, len(*in))
  511. copy(*out, *in)
  512. }
  513. return
  514. }
  515. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PayCallbackReply.
  516. func (in *PayCallbackReply) DeepCopy() *PayCallbackReply {
  517. if in == nil {
  518. return nil
  519. }
  520. out := new(PayCallbackReply)
  521. in.DeepCopyInto(out)
  522. return out
  523. }
  524. // DeepCopyAsIntoYstPayCallbackReply is an autogenerated deepcopy function, copying the receiver, writing into model.YstPayCallbackReply.
  525. func (in *PayCallbackReply) DeepCopyAsIntoYstPayCallbackReply(out *model.YstPayCallbackReply) {
  526. out.TraceNo = in.TraceNo
  527. out.Result = in.Result
  528. out.Msg = in.Msg
  529. return
  530. }
  531. // DeepCopyFromYstPayCallbackReply is an autogenerated deepcopy function, copying the receiver, writing into model.YstPayCallbackReply.
  532. func (out *PayCallbackReply) DeepCopyFromYstPayCallbackReply(in *model.YstPayCallbackReply) {
  533. out.TraceNo = in.TraceNo
  534. out.Result = in.Result
  535. out.Msg = in.Msg
  536. return
  537. }
  538. // DeepCopyAsYstPayCallbackReply is an autogenerated deepcopy function, copying the receiver, creating a new model.YstPayCallbackReply.
  539. func (in *PayCallbackReply) DeepCopyAsYstPayCallbackReply() *model.YstPayCallbackReply {
  540. if in == nil {
  541. return nil
  542. }
  543. out := new(model.YstPayCallbackReply)
  544. in.DeepCopyAsIntoYstPayCallbackReply(out)
  545. return out
  546. }
  547. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  548. func (in *PayCallbackReq) DeepCopyInto(out *PayCallbackReq) {
  549. *out = *in
  550. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  551. if in.XXX_unrecognized != nil {
  552. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  553. *out = make([]byte, len(*in))
  554. copy(*out, *in)
  555. }
  556. return
  557. }
  558. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PayCallbackReq.
  559. func (in *PayCallbackReq) DeepCopy() *PayCallbackReq {
  560. if in == nil {
  561. return nil
  562. }
  563. out := new(PayCallbackReq)
  564. in.DeepCopyInto(out)
  565. return out
  566. }
  567. // DeepCopyAsIntoYstPayCallbackReq is an autogenerated deepcopy function, copying the receiver, writing into model.YstPayCallbackReq.
  568. func (in *PayCallbackReq) DeepCopyAsIntoYstPayCallbackReq(out *model.YstPayCallbackReq) {
  569. out.SeqNo = in.SeqNo
  570. out.TraceNo = in.TraceNo
  571. out.TradeState = in.TradeState
  572. out.ContractId = in.ContractId
  573. out.Sign = in.Sign
  574. return
  575. }
  576. // DeepCopyFromYstPayCallbackReq is an autogenerated deepcopy function, copying the receiver, writing into model.YstPayCallbackReq.
  577. func (out *PayCallbackReq) DeepCopyFromYstPayCallbackReq(in *model.YstPayCallbackReq) {
  578. out.SeqNo = in.SeqNo
  579. out.TraceNo = in.TraceNo
  580. out.TradeState = in.TradeState
  581. out.ContractId = in.ContractId
  582. out.Sign = in.Sign
  583. return
  584. }
  585. // DeepCopyAsYstPayCallbackReq is an autogenerated deepcopy function, copying the receiver, creating a new model.YstPayCallbackReq.
  586. func (in *PayCallbackReq) DeepCopyAsYstPayCallbackReq() *model.YstPayCallbackReq {
  587. if in == nil {
  588. return nil
  589. }
  590. out := new(model.YstPayCallbackReq)
  591. in.DeepCopyAsIntoYstPayCallbackReq(out)
  592. return out
  593. }
  594. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  595. func (in *PayOrderReply) DeepCopyInto(out *PayOrderReply) {
  596. *out = *in
  597. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  598. if in.XXX_unrecognized != nil {
  599. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  600. *out = make([]byte, len(*in))
  601. copy(*out, *in)
  602. }
  603. return
  604. }
  605. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PayOrderReply.
  606. func (in *PayOrderReply) DeepCopy() *PayOrderReply {
  607. if in == nil {
  608. return nil
  609. }
  610. out := new(PayOrderReply)
  611. in.DeepCopyInto(out)
  612. return out
  613. }
  614. // DeepCopyAsIntoPayOrder is an autogenerated deepcopy function, copying the receiver, writing into model.PayOrder.
  615. func (in *PayOrderReply) DeepCopyAsIntoPayOrder(out *model.PayOrder) {
  616. out.OrderNo = in.OrderNo
  617. out.Platform = in.Platform
  618. out.OrderType = in.OrderType
  619. out.BuyMonths = in.BuyMonths
  620. out.ProductId = in.ProductId
  621. out.Money = in.Money
  622. out.Quantity = in.Quantity
  623. out.Status = in.Status
  624. out.ThirdTradeNo = in.ThirdTradeNo
  625. out.PaymentMoney = in.PaymentMoney
  626. out.PaymentType = in.PaymentType
  627. out.PaymentTime = in.PaymentTime
  628. out.Ctime = in.Ctime
  629. out.Mtime = in.Mtime
  630. return
  631. }
  632. // DeepCopyFromPayOrder is an autogenerated deepcopy function, copying the receiver, writing into model.PayOrder.
  633. func (out *PayOrderReply) DeepCopyFromPayOrder(in *model.PayOrder) {
  634. out.OrderNo = in.OrderNo
  635. out.Platform = in.Platform
  636. out.OrderType = in.OrderType
  637. out.BuyMonths = in.BuyMonths
  638. out.ProductId = in.ProductId
  639. out.Money = in.Money
  640. out.Quantity = in.Quantity
  641. out.Status = in.Status
  642. out.ThirdTradeNo = in.ThirdTradeNo
  643. out.PaymentMoney = in.PaymentMoney
  644. out.PaymentType = in.PaymentType
  645. out.PaymentTime = in.PaymentTime
  646. out.Ctime = in.Ctime
  647. out.Mtime = in.Mtime
  648. return
  649. }
  650. // DeepCopyAsPayOrder is an autogenerated deepcopy function, copying the receiver, creating a new model.PayOrder.
  651. func (in *PayOrderReply) DeepCopyAsPayOrder() *model.PayOrder {
  652. if in == nil {
  653. return nil
  654. }
  655. out := new(model.PayOrder)
  656. in.DeepCopyAsIntoPayOrder(out)
  657. return out
  658. }
  659. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  660. func (in *PayOrderReq) DeepCopyInto(out *PayOrderReq) {
  661. *out = *in
  662. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  663. if in.XXX_unrecognized != nil {
  664. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  665. *out = make([]byte, len(*in))
  666. copy(*out, *in)
  667. }
  668. return
  669. }
  670. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PayOrderReq.
  671. func (in *PayOrderReq) DeepCopy() *PayOrderReq {
  672. if in == nil {
  673. return nil
  674. }
  675. out := new(PayOrderReq)
  676. in.DeepCopyInto(out)
  677. return out
  678. }
  679. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  680. func (in *RenewVipReply) DeepCopyInto(out *RenewVipReply) {
  681. *out = *in
  682. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  683. if in.XXX_unrecognized != nil {
  684. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  685. *out = make([]byte, len(*in))
  686. copy(*out, *in)
  687. }
  688. return
  689. }
  690. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RenewVipReply.
  691. func (in *RenewVipReply) DeepCopy() *RenewVipReply {
  692. if in == nil {
  693. return nil
  694. }
  695. out := new(RenewVipReply)
  696. in.DeepCopyInto(out)
  697. return out
  698. }
  699. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  700. func (in *RenewVipReq) DeepCopyInto(out *RenewVipReq) {
  701. *out = *in
  702. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  703. if in.XXX_unrecognized != nil {
  704. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  705. *out = make([]byte, len(*in))
  706. copy(*out, *in)
  707. }
  708. return
  709. }
  710. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RenewVipReq.
  711. func (in *RenewVipReq) DeepCopy() *RenewVipReq {
  712. if in == nil {
  713. return nil
  714. }
  715. out := new(RenewVipReq)
  716. in.DeepCopyInto(out)
  717. return out
  718. }
  719. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  720. func (in *TokenInfo) DeepCopyInto(out *TokenInfo) {
  721. *out = *in
  722. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  723. if in.XXX_unrecognized != nil {
  724. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  725. *out = make([]byte, len(*in))
  726. copy(*out, *in)
  727. }
  728. return
  729. }
  730. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenInfo.
  731. func (in *TokenInfo) DeepCopy() *TokenInfo {
  732. if in == nil {
  733. return nil
  734. }
  735. out := new(TokenInfo)
  736. in.DeepCopyInto(out)
  737. return out
  738. }
  739. // DeepCopyAsIntoTokenInfo is an autogenerated deepcopy function, copying the receiver, writing into model.TokenInfo.
  740. func (in *TokenInfo) DeepCopyAsIntoTokenInfo(out *model.TokenInfo) {
  741. out.OrderNo = in.OrderNo
  742. out.Status = in.Status
  743. return
  744. }
  745. // DeepCopyFromTokenInfo is an autogenerated deepcopy function, copying the receiver, writing into model.TokenInfo.
  746. func (out *TokenInfo) DeepCopyFromTokenInfo(in *model.TokenInfo) {
  747. out.Token = in.Token
  748. out.OrderNo = in.OrderNo
  749. out.Status = in.Status
  750. out.Mid = in.Mid
  751. return
  752. }
  753. // DeepCopyAsTokenInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.TokenInfo.
  754. func (in *TokenInfo) DeepCopyAsTokenInfo() *model.TokenInfo {
  755. if in == nil {
  756. return nil
  757. }
  758. out := new(model.TokenInfo)
  759. in.DeepCopyAsIntoTokenInfo(out)
  760. return out
  761. }
  762. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  763. func (in *TokenInfoReq) DeepCopyInto(out *TokenInfoReq) {
  764. *out = *in
  765. if in.Token != nil {
  766. in, out := &in.Token, &out.Token
  767. *out = make([]string, len(*in))
  768. copy(*out, *in)
  769. }
  770. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  771. if in.XXX_unrecognized != nil {
  772. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  773. *out = make([]byte, len(*in))
  774. copy(*out, *in)
  775. }
  776. return
  777. }
  778. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenInfoReq.
  779. func (in *TokenInfoReq) DeepCopy() *TokenInfoReq {
  780. if in == nil {
  781. return nil
  782. }
  783. out := new(TokenInfoReq)
  784. in.DeepCopyInto(out)
  785. return out
  786. }
  787. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  788. func (in *UserInfoReply) DeepCopyInto(out *UserInfoReply) {
  789. *out = *in
  790. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  791. if in.XXX_unrecognized != nil {
  792. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  793. *out = make([]byte, len(*in))
  794. copy(*out, *in)
  795. }
  796. return
  797. }
  798. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfoReply.
  799. func (in *UserInfoReply) DeepCopy() *UserInfoReply {
  800. if in == nil {
  801. return nil
  802. }
  803. out := new(UserInfoReply)
  804. in.DeepCopyInto(out)
  805. return out
  806. }
  807. // DeepCopyAsIntoUserInfo is an autogenerated deepcopy function, copying the receiver, writing into model.UserInfo.
  808. func (in *UserInfoReply) DeepCopyAsIntoUserInfo(out *model.UserInfo) {
  809. out.VipType = in.VipType
  810. out.PayType = in.PayType
  811. out.PayChannelId = in.PayChannelId
  812. out.Status = in.Status
  813. out.OverdueTime = in.OverdueTime
  814. return
  815. }
  816. // DeepCopyFromUserInfo is an autogenerated deepcopy function, copying the receiver, writing into model.UserInfo.
  817. func (out *UserInfoReply) DeepCopyFromUserInfo(in *model.UserInfo) {
  818. out.Mid = in.Mid
  819. out.VipType = in.VipType
  820. out.PayType = in.PayType
  821. out.PayChannelId = in.PayChannelId
  822. out.Status = in.Status
  823. out.OverdueTime = in.OverdueTime
  824. return
  825. }
  826. // DeepCopyAsUserInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.UserInfo.
  827. func (in *UserInfoReply) DeepCopyAsUserInfo() *model.UserInfo {
  828. if in == nil {
  829. return nil
  830. }
  831. out := new(model.UserInfo)
  832. in.DeepCopyAsIntoUserInfo(out)
  833. return out
  834. }
  835. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  836. func (in *UserInfoReq) DeepCopyInto(out *UserInfoReq) {
  837. *out = *in
  838. out.XXX_NoUnkeyedLiteral = in.XXX_NoUnkeyedLiteral
  839. if in.XXX_unrecognized != nil {
  840. in, out := &in.XXX_unrecognized, &out.XXX_unrecognized
  841. *out = make([]byte, len(*in))
  842. copy(*out, *in)
  843. }
  844. return
  845. }
  846. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfoReq.
  847. func (in *UserInfoReq) DeepCopy() *UserInfoReq {
  848. if in == nil {
  849. return nil
  850. }
  851. out := new(UserInfoReq)
  852. in.DeepCopyInto(out)
  853. return out
  854. }
  855. func (out *YstUserInfoReply) DeepCopyFromUserInfo(in *model.UserInfo) {
  856. out.Mid = in.Mid
  857. out.PayType = in.PayType
  858. out.Status = in.Status
  859. out.PayChannelId = in.PayChannelId
  860. out.OverdueTime = in.OverdueTime
  861. }
  862. func (in *YstUserInfoReq) DeepCopyAsYstUserInfoReq() *model.YstUserInfoReq {
  863. if in == nil {
  864. return nil
  865. }
  866. out := new(model.YstUserInfoReq)
  867. out.Mid = int32(in.Mid)
  868. out.Sign = in.Sign
  869. return out
  870. }