DoMain.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. package domain
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. // Article
  7. type Article struct {
  8. Id int64 `json:"id"` // 11 0 注释:id
  9. ArticleTitle string `xorm:"article_title" json:"articleTitle"` // 255 0 注释:文章名称
  10. ArticleContent string `xorm:"article_content" json:"articleContent"` // 0 0 注释:文章内容
  11. State string `xorm:"state" json:"state"` // 255 0 注释:状态
  12. ArticleTagIds string `xorm:"article_tag_ids" json:"articleTagIds"` // 255 0 注释:文章标签
  13. ArticleTopicId int64 `xorm:"article_topic_id" json:"articleTopicId"` // 11 0 注释:文章主题id
  14. Image string `xorm:"image" json:"image"` // 255 0 注释:图片
  15. PublishTime time.Time `xorm:"publish_time" json:"publishTime"` // 0 0 注释:发表时间
  16. EyeFill int64 `xorm:"eye_fill" json:"eyeFill"` // 11 0 注释:浏览量
  17. LikeCount int64 `xorm:"like_count" json:"likeCount"` // 255 0 注释:点赞量
  18. CreateBy string `xorm:"create_by" json:"createBy"` // 255 0 注释:创建人
  19. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:创建时间
  20. UpdateBy string `xorm:"update_by" json:"updateBy"` // 255 0 注释:更新人
  21. UpdateTime time.Time `xorm:"update_time" json:"updateTime"` // 0 0 注释:更新时间
  22. }
  23. func (receiver Article) String() string {
  24. return fmt.Sprint("Article{Id:", receiver.Id, ",ArticleTitle:", receiver.ArticleTitle, ",ArticleContent:", receiver.ArticleContent, ",State:", receiver.State, ",ArticleTagIds:", receiver.ArticleTagIds, ",ArticleTopicId:", receiver.ArticleTopicId, ",Image:", receiver.Image, ",PublishTime:", receiver.PublishTime, ",EyeFill:", receiver.EyeFill, ",LikeCount:", receiver.LikeCount, ",CreateBy:", receiver.CreateBy, ",CreateTime:", receiver.CreateTime, ",UpdateBy:", receiver.UpdateBy, ",UpdateTime:", receiver.UpdateTime, "}")
  25. }
  26. // ArticleTag
  27. type ArticleTag struct {
  28. Id int64 `json:"id"` // 11 0 注释:
  29. TagName string `xorm:"tag_name" json:"tagName"` // 255 0 注释:标签名
  30. TagDesc string `xorm:"tag_desc" json:"tagDesc"` // 255 0 注释:标签描述
  31. }
  32. func (receiver ArticleTag) String() string {
  33. return fmt.Sprint("ArticleTag{Id:", receiver.Id, ",TagName:", receiver.TagName, ",TagDesc:", receiver.TagDesc, "}")
  34. }
  35. // ArticleTopic
  36. type ArticleTopic struct {
  37. Id int64 `json:"id"` // 11 0 注释:
  38. Image string `xorm:"image" json:"image"` // 255 0 注释:图片
  39. TopicName string `xorm:"topic_name" json:"topicName"` // 255 0 注释:主题名称
  40. TopicDesc string `xorm:"topic_desc" json:"topicDesc"` // 255 0 注释:主题描述
  41. }
  42. func (receiver ArticleTopic) String() string {
  43. return fmt.Sprint("ArticleTopic{Id:", receiver.Id, ",Image:", receiver.Image, ",TopicName:", receiver.TopicName, ",TopicDesc:", receiver.TopicDesc, "}")
  44. }
  45. // BackAuthority
  46. type BackAuthority struct {
  47. Id int64 `json:"id"` // 11 0 注释:id
  48. AuthorityName string `xorm:"authority_name" json:"authorityName"` // 255 0 注释:接口名
  49. AuthorityPath string `xorm:"authority_path" json:"authorityPath"` // 255 0 注释:接口路径
  50. Method string `xorm:"method" json:"method"` // 8 0 注释:方法
  51. State string `xorm:"state" json:"state"` // 5 0 注释:接口是否启用(0关闭,1启用)
  52. AuthorityVerification string `xorm:"authority_verification" json:"authorityVerification"` // 255 0 注释:权限校验
  53. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:创建时间
  54. }
  55. func (receiver BackAuthority) String() string {
  56. return fmt.Sprint("BackAuthority{Id:", receiver.Id, ",AuthorityName:", receiver.AuthorityName, ",AuthorityPath:", receiver.AuthorityPath, ",Method:", receiver.Method, ",State:", receiver.State, ",AuthorityVerification:", receiver.AuthorityVerification, ",CreateTime:", receiver.CreateTime, "}")
  57. }
  58. // BackMenu
  59. type BackMenu struct {
  60. Id int64 `json:"id"` // 11 0 注释:id
  61. BackMenuName string `xorm:"back_menu_name" json:"backMenuName"` // 255 0 注释:菜单名称
  62. BackMenuPater int64 `xorm:"back_menu_pater" json:"backMenuPater"` // 11 0 注释:父级菜单
  63. Sort int64 `xorm:"sort" json:"sort"` // 11 0 注释:排序
  64. Icon string `xorm:"icon" json:"icon"` // 255 0 注释:图标
  65. Remark string `xorm:"remark" json:"remark"` // 255 0 注释:备注
  66. BackRouterPath string `xorm:"back_router_path" json:"backRouterPath"` // 255 0 注释:路由路径
  67. State string `xorm:"state" json:"state"` // 255 0 注释:状态
  68. }
  69. func (receiver BackMenu) String() string {
  70. return fmt.Sprint("BackMenu{Id:", receiver.Id, ",BackMenuName:", receiver.BackMenuName, ",BackMenuPater:", receiver.BackMenuPater, ",Sort:", receiver.Sort, ",Icon:", receiver.Icon, ",Remark:", receiver.Remark, ",BackRouterPath:", receiver.BackRouterPath, ",State:", receiver.State, "}")
  71. }
  72. // BackRole
  73. type BackRole struct {
  74. Id int64 `json:"id"` // 11 0 注释:
  75. RoleName string `xorm:"role_name" json:"roleName"` // 255 0 注释:
  76. }
  77. func (receiver BackRole) String() string {
  78. return fmt.Sprint("BackRole{Id:", receiver.Id, ",RoleName:", receiver.RoleName, "}")
  79. }
  80. // BackRoleAuthority
  81. type BackRoleAuthority struct {
  82. Id int64 `json:"id"` // 11 0 注释:
  83. RoleId int64 `xorm:"role_id" json:"roleId"` // 11 0 注释:角色id
  84. AuthorityId int64 `xorm:"authority_id" json:"authorityId"` // 11 0 注释:权限id
  85. }
  86. func (receiver BackRoleAuthority) String() string {
  87. return fmt.Sprint("BackRoleAuthority{Id:", receiver.Id, ",RoleId:", receiver.RoleId, ",AuthorityId:", receiver.AuthorityId, "}")
  88. }
  89. // BackRoleMenu
  90. type BackRoleMenu struct {
  91. Id int64 `json:"id"` // 11 0 注释:
  92. RoleId int64 `xorm:"role_id" json:"roleId"` // 11 0 注释:角色id
  93. MenuId int64 `xorm:"menu_id" json:"menuId"` // 11 0 注释:枚舉id
  94. }
  95. func (receiver BackRoleMenu) String() string {
  96. return fmt.Sprint("BackRoleMenu{Id:", receiver.Id, ",RoleId:", receiver.RoleId, ",MenuId:", receiver.MenuId, "}")
  97. }
  98. // Goods
  99. type Goods struct {
  100. Id int64 `json:"id"` // 11 0 注释:id
  101. TypeId int64 `xorm:"type_id" json:"typeId"` // 11 0 注释:分类id
  102. GoodsName string `xorm:"goods_name" json:"goodsName"` // 255 0 注释:商品名字
  103. IntroductionId int64 `xorm:"introduction_id" json:"introductionId"` // 11 0 注释:商品介绍id
  104. SalesVolume int64 `xorm:"sales_volume" json:"salesVolume"` // 255 0 注释:近30天销量
  105. TagIds string `xorm:"tag_ids" json:"tagIds"` // 255 0 注释:商品标签
  106. }
  107. func (receiver Goods) String() string {
  108. return fmt.Sprint("Goods{Id:", receiver.Id, ",TypeId:", receiver.TypeId, ",GoodsName:", receiver.GoodsName, ",IntroductionId:", receiver.IntroductionId, ",SalesVolume:", receiver.SalesVolume, ",TagIds:", receiver.TagIds, "}")
  109. }
  110. // GoodsCommodityArea
  111. type GoodsCommodityArea struct {
  112. Id int64 `json:"id"` // 11 0 注释:id
  113. GoodsId int64 `xorm:"goods_id" json:"goodsId"` // 11 0 注释:商品id
  114. CommodityAreaName string `xorm:"commodity_area_name" json:"commodityAreaName"` // 255 0 注释:商品属地名称
  115. DetailImage string `xorm:"detail_image" json:"detailImage"` // 255 0 注释:详情图片
  116. DetailIntroductionId int64 `xorm:"detail_introduction_id" json:"detailIntroductionId"` // 11 0 注释:相关文本详情id
  117. }
  118. func (receiver GoodsCommodityArea) String() string {
  119. return fmt.Sprint("GoodsCommodityArea{Id:", receiver.Id, ",GoodsId:", receiver.GoodsId, ",CommodityAreaName:", receiver.CommodityAreaName, ",DetailImage:", receiver.DetailImage, ",DetailIntroductionId:", receiver.DetailIntroductionId, "}")
  120. }
  121. // GoodsCoupon 优惠券
  122. type GoodsCoupon struct {
  123. Id int64 `json:"id"` // 11 0 注释:id
  124. CouponName string `xorm:"coupon_name" json:"couponName"` // 255 0 注释:优惠券名称
  125. CouponDesc string `xorm:"coupon_desc" json:"couponDesc"` // 255 0 注释:优惠券描述
  126. CashBackPoint float64 `xorm:"cash_back_point" json:"cashBackPoint"` // 11 2 注释:满x
  127. CashBackPrice float64 `xorm:"cash_back_price" json:"cashBackPrice"` // 11 2 注释:减x
  128. ConditionByTopic string `xorm:"condition_by_topic" json:"conditionByTopic"` // 255 0 注释:主题可用,id
  129. ConditionByType string `xorm:"condition_by_type" json:"conditionByType"` // 255 0 注释:类型可用,id
  130. ConditionByGoods string `xorm:"condition_by_goods" json:"conditionByGoods"` // 255 0 注释:商品可用,id
  131. GrantCount string `xorm:"grant_count" json:"grantCount"` // 255 0 注释:发放数量
  132. Count int64 `xorm:"count" json:"count"` // 255 0 注释:优惠券余量
  133. ReceiveType string `xorm:"receive_type" json:"receiveType"` // 255 0 注释:领取条件
  134. Validity string `xorm:"validity" json:"validity"` // 255 0 注释:有效性,领取开始计时(ClaimTiming),固定时间(FixedTime)
  135. ValidityPeriod time.Time `xorm:"validity_period" json:"validityPeriod"` // 0 0 注释:有效期
  136. }
  137. func (receiver GoodsCoupon) String() string {
  138. return fmt.Sprint("GoodsCoupon{Id:", receiver.Id, ",CouponName:", receiver.CouponName, ",CouponDesc:", receiver.CouponDesc, ",CashBackPoint:", receiver.CashBackPoint, ",CashBackPrice:", receiver.CashBackPrice, ",ConditionByTopic:", receiver.ConditionByTopic, ",ConditionByType:", receiver.ConditionByType, ",ConditionByGoods:", receiver.ConditionByGoods, ",GrantCount:", receiver.GrantCount, ",Count:", receiver.Count, ",ReceiveType:", receiver.ReceiveType, ",Validity:", receiver.Validity, ",ValidityPeriod:", receiver.ValidityPeriod, "}")
  139. }
  140. // GoodsCouponUser 优惠券领取
  141. type GoodsCouponUser struct {
  142. Id int64 `json:"id"` // 11 0 注释:id
  143. UserId int64 `xorm:"user_id" json:"userId"` // 11 0 注释:用户id
  144. CouponId int64 `xorm:"coupon_id" json:"couponId"` // 11 0 注释:优惠券id
  145. CollectionTime time.Time `xorm:"collection_time" json:"collectionTime"` // 0 0 注释:领取时间
  146. State string `xorm:"state" json:"state"` // 255 0 注释:状态,已使用2,未使用1,已过期0
  147. }
  148. func (receiver GoodsCouponUser) String() string {
  149. return fmt.Sprint("GoodsCouponUser{Id:", receiver.Id, ",UserId:", receiver.UserId, ",CouponId:", receiver.CouponId, ",CollectionTime:", receiver.CollectionTime, ",State:", receiver.State, "}")
  150. }
  151. // GoodsIntroduction 商品介绍
  152. type GoodsIntroduction struct {
  153. Id int64 `json:"id"` // 11 0 注释:文章id
  154. GoodsArticleName string `xorm:"goods_article_name" json:"goodsArticleName"` // 255 0 注释:商品文章名
  155. GoodsArticle string `xorm:"goods_article" json:"goodsArticle"` // 0 0 注释:商品文章
  156. CreateBy string `xorm:"create_by" json:"createBy"` // 0 0 注释:创建人
  157. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:创建时间
  158. UpdateBy string `xorm:"update_by" json:"updateBy"` // 255 0 注释:更新人
  159. UpdateTime time.Time `xorm:"update_time" json:"updateTime"` // 0 0 注释:更新时间
  160. }
  161. func (receiver GoodsIntroduction) String() string {
  162. return fmt.Sprint("GoodsIntroduction{Id:", receiver.Id, ",GoodsArticleName:", receiver.GoodsArticleName, ",GoodsArticle:", receiver.GoodsArticle, ",CreateBy:", receiver.CreateBy, ",CreateTime:", receiver.CreateTime, ",UpdateBy:", receiver.UpdateBy, ",UpdateTime:", receiver.UpdateTime, "}")
  163. }
  164. // GoodsOrder
  165. type GoodsOrder struct {
  166. Id int64 `json:"id"` // 11 0 注释:id
  167. OrderName string `xorm:"order_name" json:"orderName"` // 255 0 注释:订单名
  168. SkuId int64 `xorm:"sku_id" json:"skuId"` // 11 0 注释:skuid
  169. Count int64 `xorm:"count" json:"count"` // 11 0 注释:购买数量
  170. Price float64 `xorm:"price" json:"price"` // 10 2 注释:单价
  171. TotalPrice float64 `xorm:"total_price" json:"totalPrice"` // 10 2 注释:总价
  172. ContactInformation string `xorm:"contact_information" json:"contactInformation"` // 255 0 注释:联系方式
  173. CouponUserId int64 `xorm:"coupon_user_id" json:"couponUserId"` // 11 0 注释:使用的优惠券
  174. State string `xorm:"state" json:"state"` // 10 0 注释:支付状态,0待支付,1待发货,2已发货,3订单完成,4订单异常
  175. CreateBy int64 `xorm:"create_by" json:"createBy"` // 255 0 注释:用户id
  176. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:订单创建时间
  177. }
  178. func (receiver GoodsOrder) String() string {
  179. return fmt.Sprint("GoodsOrder{Id:", receiver.Id, ",OrderName:", receiver.OrderName, ",SkuId:", receiver.SkuId, ",Count:", receiver.Count, ",Price:", receiver.Price, ",TotalPrice:", receiver.TotalPrice, ",ContactInformation:", receiver.ContactInformation, ",CouponUserId:", receiver.CouponUserId, ",State:", receiver.State, ",CreateBy:", receiver.CreateBy, ",CreateTime:", receiver.CreateTime, "}")
  180. }
  181. // GoodsSku
  182. type GoodsSku struct {
  183. Id int64 `json:"id"` // 11 0 注释:
  184. SkuImage string `xorm:"sku_image" json:"skuImage"` // 255 0 注释:sku图片
  185. SkuName string `xorm:"sku_name" json:"skuName"` // 255 0 注释:商品sku名字
  186. Price float64 `xorm:"price" json:"price"` // 10 2 注释:现在价格
  187. HistoricalPrices float64 `xorm:"historical_prices" json:"historicalPrices"` // 10 2 注释:历史价格
  188. InventoryNumber int64 `xorm:"inventory_number" json:"inventoryNumber"` // 11 0 注释:库存
  189. CommodityAreaId int64 `xorm:"commodity_area_id" json:"commodityAreaId"` // 11 0 注释:属地id
  190. GoodsId int64 `xorm:"goods_id" json:"goodsId"` // 11 0 注释:商品id
  191. CreateBy string `xorm:"create_by" json:"createBy"` // 255 0 注释:创建人
  192. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:创建时间
  193. }
  194. func (receiver GoodsSku) String() string {
  195. return fmt.Sprint("GoodsSku{Id:", receiver.Id, ",SkuImage:", receiver.SkuImage, ",SkuName:", receiver.SkuName, ",Price:", receiver.Price, ",HistoricalPrices:", receiver.HistoricalPrices, ",InventoryNumber:", receiver.InventoryNumber, ",CommodityAreaId:", receiver.CommodityAreaId, ",GoodsId:", receiver.GoodsId, ",CreateBy:", receiver.CreateBy, ",CreateTime:", receiver.CreateTime, "}")
  196. }
  197. // GoodsSkuCard
  198. type GoodsSkuCard struct {
  199. Id int64 `json:"id"` // 11 0 注释:id
  200. CardName string `xorm:"card_name" json:"cardName"` // 255 0 注释:卡种名称
  201. State string `xorm:"state" json:"state"` // 255 0 注释:状态,0未使用,1已用,2过期
  202. Count int64 `xorm:"count" json:"count"` // 11 0 注释:库存
  203. TotalCount string `xorm:"total_count" json:"totalCount"` // 255 0 注释:总数
  204. CardKey string `xorm:"card_key" json:"cardKey"` // 255 0 注释:卡密
  205. Use string `xorm:"use" json:"use"` // 5 0 注释:是否已用
  206. UploadTime time.Time `xorm:"upload_time" json:"uploadTime"` // 0 0 注释:入库时间
  207. SkuId int64 `xorm:"sku_id" json:"skuId"` // 11 0 注释:商品规格绑定
  208. Sort string `xorm:"sort" json:"sort"` // 255 0 注释:排序,出售优先级
  209. }
  210. func (receiver GoodsSkuCard) String() string {
  211. return fmt.Sprint("GoodsSkuCard{Id:", receiver.Id, ",CardName:", receiver.CardName, ",State:", receiver.State, ",Count:", receiver.Count, ",TotalCount:", receiver.TotalCount, ",CardKey:", receiver.CardKey, ",Use:", receiver.Use, ",UploadTime:", receiver.UploadTime, ",SkuId:", receiver.SkuId, ",Sort:", receiver.Sort, "}")
  212. }
  213. // GoodsTag
  214. type GoodsTag struct {
  215. Id int64 `json:"id"` // 11 0 注释:id
  216. Name string `xorm:"name" json:"name"` // 255 0 注释:名字
  217. IconUrl string `xorm:"icon_url" json:"iconUrl"` // 255 0 注释:图标路径
  218. Tag string `xorm:"tag" json:"tag"` // 255 0 注释:标签
  219. }
  220. func (receiver GoodsTag) String() string {
  221. return fmt.Sprint("GoodsTag{Id:", receiver.Id, ",Name:", receiver.Name, ",IconUrl:", receiver.IconUrl, ",Tag:", receiver.Tag, "}")
  222. }
  223. // GoodsTopic
  224. type GoodsTopic struct {
  225. Id int64 `json:"id"` // 11 0 注释:
  226. TopicPageImage string `xorm:"topic_page_image" json:"topicPageImage"` // 255 0 注释:主题首页图片
  227. TopicName string `xorm:"topic_name" json:"topicName"` // 255 0 注释:主题名称
  228. TopicDesc string `xorm:"topic_desc" json:"topicDesc"` // 255 0 注释:主题描述
  229. TypeIds string `xorm:"type_ids" json:"typeIds"` // 255 0 注释:商品类型id
  230. }
  231. func (receiver GoodsTopic) String() string {
  232. return fmt.Sprint("GoodsTopic{Id:", receiver.Id, ",TopicPageImage:", receiver.TopicPageImage, ",TopicName:", receiver.TopicName, ",TopicDesc:", receiver.TopicDesc, ",TypeIds:", receiver.TypeIds, "}")
  233. }
  234. // GoodsType 商品分类
  235. type GoodsType struct {
  236. Id int64 `json:"id"` // 11 0 注释:
  237. Sort int64 `xorm:"sort" json:"sort"` // 11 0 注释:排序
  238. TypeImage string `xorm:"type_image" json:"typeImage"` // 50 0 注释:类型图片
  239. TypeName string `xorm:"type_name" json:"typeName"` // 255 0 注释:商品类别名称
  240. CreateTime time.Time `xorm:"create_time" json:"createTime"` // 0 0 注释:创建时间
  241. }
  242. func (receiver GoodsType) String() string {
  243. return fmt.Sprint("GoodsType{Id:", receiver.Id, ",Sort:", receiver.Sort, ",TypeImage:", receiver.TypeImage, ",TypeName:", receiver.TypeName, ",CreateTime:", receiver.CreateTime, "}")
  244. }
  245. // User
  246. type User struct {
  247. Id int64 `json:"id"` // 11 0 注释:
  248. Username string `xorm:"username" json:"username"` // 255 0 注释:账号
  249. Password string `xorm:"password" json:"password"` // 255 0 注释:密码
  250. CreationTime int64 `xorm:"creation_time" json:"creationTime"` // 11 0 注释:账号创建时间
  251. LoginTime int64 `xorm:"login_time" json:"loginTime"` // 11 0 注释:登录时间
  252. Status string `xorm:"status" json:"status"` // 255 0 注释:账号状态
  253. RoleId int64 `xorm:"role_id" json:"roleId"` // 11 0 注释:角色id
  254. Phone string `xorm:"phone" json:"phone"` // 255 0 注释:手机
  255. Email string `xorm:"email" json:"email"` // 255 0 注释:邮箱
  256. Name string `xorm:"name" json:"name"` // 255 0 注释:用户名
  257. Avatar string `xorm:"avatar" json:"avatar"` // 255 0 注释:头像
  258. RecommendCode string `xorm:"recommend_code" json:"recommendCode"` // 255 0 注释:推荐码
  259. }
  260. func (receiver User) String() string {
  261. return fmt.Sprint("User{Id:", receiver.Id, ",Username:", receiver.Username, ",Password:", receiver.Password, ",CreationTime:", receiver.CreationTime, ",LoginTime:", receiver.LoginTime, ",Status:", receiver.Status, ",RoleId:", receiver.RoleId, ",Phone:", receiver.Phone, ",Email:", receiver.Email, ",Name:", receiver.Name, ",Avatar:", receiver.Avatar, ",RecommendCode:", receiver.RecommendCode, "}")
  262. }
  263. // UserWallet
  264. type UserWallet struct {
  265. Id int64 `json:"id"` // 11 0 注释:id
  266. UserId int64 `xorm:"user_id" json:"userId"` // 11 0 注释:用户id
  267. Balance float64 `xorm:"balance" json:"balance"` // 65 0 注释:余额
  268. PromotionAmount float64 `xorm:"promotion_amount" json:"promotionAmount"` // 20 2 注释:推广获取总金额
  269. RechargeAmount float64 `xorm:"recharge_amount" json:"rechargeAmount"` // 20 2 注释:充值金额
  270. }
  271. func (receiver UserWallet) String() string {
  272. return fmt.Sprint("UserWallet{Id:", receiver.Id, ",UserId:", receiver.UserId, ",Balance:", receiver.Balance, ",PromotionAmount:", receiver.PromotionAmount, ",RechargeAmount:", receiver.RechargeAmount, "}")
  273. }