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