产线排序

This commit is contained in:
chenlin 2026-02-05 15:26:37 +08:00
parent 8e3b1a15a5
commit dd041785ad
2 changed files with 1 additions and 7 deletions

View File

@ -40,7 +40,7 @@ namespace DOAN.Service.MES.base_
.AndIF(!string.IsNullOrEmpty(parm.Code), it => it.Code.Contains(parm.Code))
.AndIF(parm.Status > -1, it => it.Status == parm.Status);
var response = Queryable()
.Where(predicate.ToExpression())
.Where(predicate.ToExpression()).OrderBy(expression => expression.Code)
.ToPage<BaseWorkRoute, BaseWorkRouteDto_bind_process>(parm);
if (response != null && response.Result.Count > 0)
{

View File

@ -1,6 +0,0 @@
{
"sdk": {
"version": "8.0.416",
"rollForward": "latestFeature"
}
}