Compare commits

...

2 Commits

Author SHA1 Message Date
COOL
87bcda844e fix entityRenderPage 2025-05-13 17:50:57 +08:00
COOL
a402464cc2 fix entityRenderPage 2025-05-13 16:00:45 +08:00
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@cool-midway/core",
"version": "8.0.3",
"version": "8.0.4",
"description": "cool-admin midway core",
"main": "dist/index.js",
"typings": "index.d.ts",

View File

@ -162,7 +162,7 @@ export abstract class BaseMysqlService {
find.addOrderBy(order, sort.toUpperCase());
}
return {
list: await dataFind.getMany(),
list: await dataFind.getRawMany(),
pagination: {
page: parseInt(page),
size: parseInt(size),

View File

@ -191,7 +191,7 @@ export abstract class BasePgService {
find.addOrderBy(order, sort.toUpperCase());
}
return {
list: await dataFind.getMany(),
list: await dataFind.getRawMany(),
pagination: {
page: parseInt(page),
size: parseInt(size),

View File

@ -193,7 +193,7 @@ export abstract class BaseSqliteService {
find.addOrderBy(order, sort.toUpperCase());
}
return {
list: await dataFind.getMany(),
list: await dataFind.getRawMany(),
pagination: {
page: parseInt(page),
size: parseInt(size),