设备监控状态异常邮箱修改成配置文件读取
This commit is contained in:
parent
80ab607432
commit
4592681978
|
|
@ -102,3 +102,12 @@ type GetDBTableDescReq struct {
|
||||||
Table string `json:"table" form:"table"` // 数据库表名
|
Table string `json:"table" form:"table"` // 数据库表名
|
||||||
GetType int `json:"get_type" form:"get_type"` // 获取类型: 0获取全部,1获取1个
|
GetType int `json:"get_type" form:"get_type"` // 获取类型: 0获取全部,1获取1个
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetDBTableDescResp struct {
|
||||||
|
TableName string `json:"table_name"` // 表名
|
||||||
|
}
|
||||||
|
|
||||||
|
type DBTableAttribute struct {
|
||||||
|
ColumnName string `json:"column_name"` // 列名
|
||||||
|
ColumnType string `json:"column_type"` // 列类型
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue