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.
14 lines
446 B
14 lines
446 B
package response
|
|
|
|
type UserRegister struct {
|
|
Result int `json:"result"` //返回错误码:0:成功 ,1:失败,99:未知错误码
|
|
UserID string `json:"user_id"` //人员 id
|
|
ZwFile string `json:"zw_file"`
|
|
JmFile string `json:"jm_file"`
|
|
}
|
|
|
|
type UserIdentify struct {
|
|
UserID string `json:"user_id"` //人员 id
|
|
Similarity string `json:"similarity"` //相似度
|
|
Seq string `json:"seq"` //识别业务流水号
|
|
}
|
|
|