123456789101112131415161718192021222324 |
- using wms.dto.response.hj;
- using wms.service.IService;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace wms.service.Service
- {
- /// <summary>
- /// 列递增层递增
- /// </summary>
- public class ColumnToLayerIncreaseService : IWorkStrategyService
- {
- public List<LocationForStrategyInfo> Filter(List<LocationForStrategyInfo> listLocation)
- {
- if (listLocation == null || !listLocation.Any())
- {
- return listLocation;
- }
- return listLocation.OrderBy(p=>p.Sort).ToList();
- }
- }
- }
|