copy_autogenerated.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. // Code generated by deepcopy-gen. DO NOT EDIT.
  2. package api
  3. import (
  4. model "go-common/app/service/main/member/model"
  5. )
  6. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  7. func (in *LevelInfo) DeepCopyInto(out *LevelInfo) {
  8. *out = *in
  9. return
  10. }
  11. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LevelInfo.
  12. func (in *LevelInfo) DeepCopy() *LevelInfo {
  13. if in == nil {
  14. return nil
  15. }
  16. out := new(LevelInfo)
  17. in.DeepCopyInto(out)
  18. return out
  19. }
  20. // DeepCopyAsIntoLevelInfo is an autogenerated deepcopy function, copying the receiver, writing into model.LevelInfo.
  21. func (in *LevelInfo) DeepCopyAsIntoLevelInfo(out *model.LevelInfo) {
  22. out.Cur = in.Cur
  23. out.Min = in.Min
  24. out.NowExp = in.NowExp
  25. out.NextExp = in.NextExp
  26. return
  27. }
  28. // DeepCopyFromLevelInfo is an autogenerated deepcopy function, copying the receiver, writing into model.LevelInfo.
  29. func (out *LevelInfo) DeepCopyFromLevelInfo(in *model.LevelInfo) {
  30. out.Cur = in.Cur
  31. out.Min = in.Min
  32. out.NowExp = in.NowExp
  33. out.NextExp = in.NextExp
  34. return
  35. }
  36. // DeepCopyAsLevelInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.LevelInfo.
  37. func (in *LevelInfo) DeepCopyAsLevelInfo() *model.LevelInfo {
  38. if in == nil {
  39. return nil
  40. }
  41. out := new(model.LevelInfo)
  42. in.DeepCopyAsIntoLevelInfo(out)
  43. return out
  44. }
  45. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  46. func (in *OfficialInfo) DeepCopyInto(out *OfficialInfo) {
  47. *out = *in
  48. return
  49. }
  50. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OfficialInfo.
  51. func (in *OfficialInfo) DeepCopy() *OfficialInfo {
  52. if in == nil {
  53. return nil
  54. }
  55. out := new(OfficialInfo)
  56. in.DeepCopyInto(out)
  57. return out
  58. }
  59. // DeepCopyAsIntoOfficialInfo is an autogenerated deepcopy function, copying the receiver, writing into model.OfficialInfo.
  60. func (in *OfficialInfo) DeepCopyAsIntoOfficialInfo(out *model.OfficialInfo) {
  61. out.Role = in.Role
  62. out.Title = in.Title
  63. out.Desc = in.Desc
  64. return
  65. }
  66. // DeepCopyFromOfficialInfo is an autogenerated deepcopy function, copying the receiver, writing into model.OfficialInfo.
  67. func (out *OfficialInfo) DeepCopyFromOfficialInfo(in *model.OfficialInfo) {
  68. out.Role = in.Role
  69. out.Title = in.Title
  70. out.Desc = in.Desc
  71. return
  72. }
  73. // DeepCopyAsOfficialInfo is an autogenerated deepcopy function, copying the receiver, creating a new model.OfficialInfo.
  74. func (in *OfficialInfo) DeepCopyAsOfficialInfo() *model.OfficialInfo {
  75. if in == nil {
  76. return nil
  77. }
  78. out := new(model.OfficialInfo)
  79. in.DeepCopyAsIntoOfficialInfo(out)
  80. return out
  81. }
  82. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  83. func (in *VipReply) DeepCopyInto(out *VipReply) {
  84. *out = *in
  85. return
  86. }
  87. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VipReply.
  88. func (in *VipReply) DeepCopy() *VipReply {
  89. if in == nil {
  90. return nil
  91. }
  92. out := new(VipReply)
  93. in.DeepCopyInto(out)
  94. return out
  95. }
  96. // DeepCopyAsIntoVipInfo is an autogenerated deepcopy function, copying the receiver, writing into VipInfo.
  97. func (in *VipReply) DeepCopyAsIntoVipInfo(out *VipInfo) {
  98. out.Type = in.Type
  99. out.Status = in.Status
  100. out.DueDate = in.DueDate
  101. out.VipPayType = in.VipPayType
  102. return
  103. }
  104. // DeepCopyFromVipInfo is an autogenerated deepcopy function, copying the receiver, writing into VipInfo.
  105. func (out *VipReply) DeepCopyFromVipInfo(in *VipInfo) {
  106. out.Type = in.Type
  107. out.Status = in.Status
  108. out.DueDate = in.DueDate
  109. out.VipPayType = in.VipPayType
  110. return
  111. }
  112. // DeepCopyAsVipInfo is an autogenerated deepcopy function, copying the receiver, creating a new VipInfo.
  113. func (in *VipReply) DeepCopyAsVipInfo() *VipInfo {
  114. if in == nil {
  115. return nil
  116. }
  117. out := new(VipInfo)
  118. in.DeepCopyAsIntoVipInfo(out)
  119. return out
  120. }