zksu
/
API
forked from yoone/API
1
0
Fork 0

fix(service): 修改客户服务中的默认排序顺序

将默认排序从 orders ASC 改为 orders DESC 以符合业务需求
This commit is contained in:
tikkhun 2026-01-30 16:34:48 +08:00
parent 2cc434bb19
commit e657578ef1
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ export class CustomerService {
orderByClause = `ORDER BY ${orderClauses.join(', ')}`;
}
} else {
orderByClause = 'ORDER BY orders ASC, yoone_total DESC';
orderByClause = 'ORDER BY orders DESC, yoone_total DESC';
}
// 主查询