golang 的 rabbitmq 消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md_doushen.go 807 B

1 year ago
123456789101112131415161718192021222324
  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. }