| 1234567891011121314151617181920212223242526 |
- // Package model
- /**
- * @ File: hr_verify.go
- * @ Date: 2021/6/8 18:06
- * @ Author: JYQ
- * @ Description:
- */
- package model
- type HrVerify struct {
- CrId int `json:"cr_id"`
- Age int `json:"age"`
- Weight int `json:"weight"`
- Sex int `json:"sex"`
- StaticHr int `json:"static_hr"`
- Height int `json:"height"`
- HeadImg string `json:"head_img"`
- Name string `json:"name"`
- IsPrivate int `json:"is_private"`
- GroupNo int `json:"group_no"`
- }
- type HrVerifyDetail struct {
- Sn string
- HrVerify
- }
|