PreRailwayScaleService.cs 748 B

123456789101112131415161718192021222324
  1. using com.hnshituo.core.webapp.vo;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace RailLocalMeter
  8. {
  9. public class PreRailwayScaleService
  10. {
  11. /// <summary>
  12. /// 根据车号查所有有效预报编 正使用,待使用
  13. /// </summary>
  14. /// <param name="info"></param>
  15. /// <returns></returns>
  16. public RESTfulResult<List<PreRailwayScale>> doQueryTenWf(PreRailwayScale info)
  17. {
  18. DbHelper db = new DbHelper();
  19. RESTfulResult<List<PreRailwayScale>> rm = db.doOption<List<PreRailwayScale>>("prerailwayscales", "doQueryByCar", new object[] { info }, 0);
  20. return rm;
  21. }
  22. }
  23. }