package vo
|
|
type FeatureCacheBase struct {
|
Id string `json:"id"`
|
TableId string `json:"tableid"`
|
FaceFeature string `json:"faceFeature"`
|
Enable int32 `json:"enable"`
|
|
CarNo string `json:"carNo"`
|
}
|
|
type FaceUpdateVo struct {
|
Id string `json:"id"`
|
FaceFeature string `json:"faceFeature"`
|
PersonPicUrl string `json:"personPicUrl"`
|
}
|