feat: 新增系统样式配置,支持改logo图标与标题

This commit is contained in:
meilin.huang
2024-01-05 12:09:12 +08:00
parent ae3d2659aa
commit 7a7a7020b4
18 changed files with 385 additions and 458 deletions

View File

@@ -142,7 +142,7 @@ func (md *MysqlDialect) GetPrimaryKey(tablename string) (string, error) {
// 获取表索引信息
func (md *MysqlDialect) GetTableIndex(tableName string) ([]Index, error) {
_, res, err := md.dc.Query(fmt.Sprintf(GetLocalSql(MYSQL_META_FILE, MYSQL_INDEX_INFO_KEY), tableName))
_, res, err := md.dc.Query(GetLocalSql(MYSQL_META_FILE, MYSQL_INDEX_INFO_KEY), tableName)
if err != nil {
return nil, err
}