liuxiaolong
2019-11-28 39beb62008d6f86ec9735a601290746d3a8ff01d
models/dbtables.go
@@ -2,13 +2,13 @@
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"`   //有效期结束时间
   IsSync        string `json:"isSync,omitempty" example:"1:同步到管理平台,2:不同步"`
   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,如果是同步库就不需要记录)
}