package models
|
|
type Dbtables struct {
|
BaseEntity
|
TableName string `json:"tableName" example:"底库123"` //表名
|
TableDesc string `json:"tableDesc" example:"底库描述"` //描述
|
TableType string `json:"tableType" example:"person,car"` //人员表"person
|
BwType string `json:"bwType" example:"黑名单:1,白名单:0"` //黑名单:1,白名单:0
|
StartTime string `json:"startTime" example:"2019-01-12 12:14:56"` //有效期开始时间
|
EndTime string `json:"endTime" example:"2019-10-12 12:14:56"` //有效期结束时间
|
IsSync string `json:"isSync" example:"1:同步到管理平台,2:不同步"`
|
AnalyServerId string `json:"analyServerId" example:"本地库所属的分析设备id,如果是同步库就不需要记录"` // 分析设备id(本地库所属的分析设备id,如果是同步库就不需要记录)
|
}
|
|
//UploadFlag string `json:"uploadFlag,omitempty" example:"上传标志"` //
|
//CmpThreshold string `json:"cmpThreshold,omitempty" example:"45"`// //人脸比对阈值
|