소스 검색

Merge branch 'feature/jiayue' into debug

hsun 1 년 전
부모
커밋
bc28c07dea
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      models/jiayue/dict.go

+ 1 - 1
models/jiayue/dict.go

@@ -22,7 +22,7 @@ func GetDictIndex(condition string, pars []interface{}, orderRule string) (dictI
 	if orderRule != "" {
 		order += fmt.Sprintf(`ORDER BY %s`, orderRule)
 	}
-	sqlStatement := fmt.Sprintf("SELECT %s, 0 AS no FROM %s WHERE %s %s;", fields, IndexTableName, condition, order)
+	sqlStatement := fmt.Sprintf("SELECT %s, 0 no FROM %s WHERE %s %s", fields, IndexTableName, condition, order)
 	global.LOG.Info("GetDictIndex SQL: ", sqlStatement)
 	dictIndexList, err = getDictIndex(sqlStatement, pars)
 	if err != nil {