| 123456789101112131415161718192021222324 |
- using com.hnshituo.core.webapp.vo;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RailLocalMeter
- {
- public class PreRailwayScaleService
- {
- /// <summary>
- /// 根据车号查所有有效预报编 正使用,待使用
- /// </summary>
- /// <param name="info"></param>
- /// <returns></returns>
- public RESTfulResult<List<PreRailwayScale>> doQueryTenWf(PreRailwayScale info)
- {
- DbHelper db = new DbHelper();
- RESTfulResult<List<PreRailwayScale>> rm = db.doOption<List<PreRailwayScale>>("prerailwayscales", "doQueryByCar", new object[] { info }, 0);
- return rm;
- }
- }
- }
|