copy.go 28 KB

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