|
@@ -31,8 +31,8 @@ public class KwtWaybillOrderNodeRepository extends ServiceImpl<KwtWaybillOrderNo
|
|
|
if (wSubtaskId != null) {
|
|
if (wSubtaskId != null) {
|
|
|
wrapper.eq(KwtWaybillOrderNode::getWSubtaskId, wSubtaskId);
|
|
wrapper.eq(KwtWaybillOrderNode::getWSubtaskId, wSubtaskId);
|
|
|
}
|
|
}
|
|
|
- wrapper.orderByAsc(KwtWaybillOrderNode::getCreateTime);
|
|
|
|
|
- wrapper.orderByAsc(KwtWaybillOrderNode::getId);
|
|
|
|
|
|
|
+ wrapper.orderByDesc(KwtWaybillOrderNode::getCreateTime);
|
|
|
|
|
+ wrapper.orderByDesc(KwtWaybillOrderNode::getId);
|
|
|
return this.list(wrapper);
|
|
return this.list(wrapper);
|
|
|
}
|
|
}
|
|
|
|
|
|