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.

19 lines
1.1 KiB

package request
import "mime/multipart"
type UserRegister struct {
JmFile *multipart.FileHeader `form:"jm_file" json:"jm_file" binding:"required" swaggerignore:"true"` //掌静脉图片文件
ZwFile *multipart.FileHeader `form:"zw_file" json:"zw_file" swaggerignore:"true"` //掌纹图片文件
UserID string `form:"user_id" json:"user_id"` //用户id(或员工号)
FeatureCode string `form:"feature_code" json:"feature_code"` //特征码
MsgID string `form:"msg_id" json:"msg_id"` //报文唯一标识
Time string `form:"time" json:"time"` //时间戳
}
type UserIdentify struct {
Cmd int `form:"cmd" json:"cmd"` //1070
FeatureCode string `form:"feature_code" json:"feature_code"` //特征码
MsgID string `form:"msg_id" json:"msg_id"` //报文唯一标识
Time string `form:"time" json:"time"` //时间戳
}