package esutil
|
|
|
type Baseinfo struct {
|
FaceFeature string `json:"faceFeature"`
|
PersonId string `json:"id"`
|
TableId string `json:"tableId"`
|
TableName string `json:"-"`
|
compareScore float32 `json:"-"`
|
PersonName string `json:"personName"`
|
PersonPicUrl string `json:"personPicUrl"`
|
PhoneNum string `json:"phoneNum"`
|
Sex string `json:"sex"`
|
Idcard string `json:"idCard"`
|
MonitorLevel string `json:"monitorLevel"`
|
Content string `json:"-"`
|
}
|