WaterWellMapBLL.cs 649 B

123456789101112131415161718192021222324252627
  1. using LeaRun.Application.Service.WaterWellManage;
  2. using LeaRun.Util;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace LeaRun.Application.Busines.WaterWell
  9. {
  10. public class WaterWellMapBLL
  11. {
  12. WaterWellMapService service = new WaterWellMapService();
  13. #region 获取水源井地图数据
  14. /// <summary>
  15. /// 获取水源井地图数据
  16. /// </summary>
  17. /// <returns></returns>
  18. public string GetStationInfo()
  19. {
  20. return Json.ToJson(service.GetStationInfo());
  21. }
  22. #endregion
  23. }
  24. }