user.pid.get.go 132 B

123456789
  1. package user
  2. type PidGetRequest struct {
  3. OpenId string `json:"openId"`
  4. }
  5. type PidGetResponse struct {
  6. Pid string `json:"pid"`
  7. }