123456789101112131415161718192021222324252627 |
- using LeaRun.Application.Service.WaterWellManage;
- using LeaRun.Util;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LeaRun.Application.Busines.WaterWell
- {
- public class WaterWellMapBLL
- {
- WaterWellMapService service = new WaterWellMapService();
- #region 获取水源井地图数据
- /// <summary>
- /// 获取水源井地图数据
- /// </summary>
- /// <returns></returns>
- public string GetStationInfo()
- {
- return Json.ToJson(service.GetStationInfo());
- }
- #endregion
- }
- }
|