golang 的 rabbitmq 消费项目
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

md_doushen.go 942 B

1年前
1234567891011121314151617181920212223242526272829
  1. package md
  2. type DouShenUserRegisterMessageStructForOfficial struct {
  3. MasterId string `json:"master_id"`
  4. Phone int64 `json:"phone"`
  5. Uid int64 `json:"uid"`
  6. }
  7. type DouShenUserRegisterMessageStructForMyFans struct {
  8. MasterId string `json:"master_id"`
  9. Phone int64 `json:"phone"`
  10. Uid int64 `json:"uid"`
  11. }
  12. type DouShenUserRegisterMessageStructForMyRecommender struct {
  13. MasterId string `json:"master_id"`
  14. Phone int64 `json:"phone"`
  15. Uid int64 `json:"uid"`
  16. RecommenderUid int64 `json:"recommender_uid"`
  17. }
  18. type DouShenUserRegisterMessageStructForOperationCenter struct {
  19. MasterId string `json:"master_id"`
  20. Phone int64 `json:"phone"`
  21. Uid int64 `json:"uid"`
  22. OperationCenterUid int64 `json:"operation_center_uid"`
  23. }
  24. type DouShenUserRegisterMessageStructForUserRegisterUpLv struct {
  25. MasterId string `json:"master_id"`
  26. Uid int64 `json:"uid"`
  27. }