hr_verify.go 545 B

1234567891011121314151617181920212223242526
  1. // Package model
  2. /**
  3. * @ File: hr_verify.go
  4. * @ Date: 2021/6/8 18:06
  5. * @ Author: JYQ
  6. * @ Description:
  7. */
  8. package model
  9. type HrVerify struct {
  10. CrId int `json:"cr_id"`
  11. Age int `json:"age"`
  12. Weight int `json:"weight"`
  13. Sex int `json:"sex"`
  14. StaticHr int `json:"static_hr"`
  15. Height int `json:"height"`
  16. HeadImg string `json:"head_img"`
  17. Name string `json:"name"`
  18. IsPrivate int `json:"is_private"`
  19. GroupNo int `json:"group_no"`
  20. }
  21. type HrVerifyDetail struct {
  22. Sn string
  23. HrVerify
  24. }