设备监控状态异常邮箱修改成配置文件读取

This commit is contained in:
junleea 2025-09-03 20:37:12 +08:00
parent 80ab607432
commit 4592681978
1 changed files with 9 additions and 0 deletions

View File

@ -102,3 +102,12 @@ type GetDBTableDescReq struct {
Table string `json:"table" form:"table"` // 数据库表名
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"` // 列类型
}