huanghongfeng
昨天 770ff234ccd1bcca05dd32754911d887a8cef541
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models;
 
namespace WIDESEAWCS_BasicInfoService
{
    public class StationMangerService : ServiceBase<Dt_StationManger, IRepository<Dt_StationManger>>, IStationMangerService
    {
        public StationMangerService(IRepository<Dt_StationManger> BaseDal) : base(BaseDal)
        {
        }
 
        public Dt_StationManger QueryPlatform(string StationCode)
        {
            return BaseDal.QueryFirst(x=>x.StationCode == StationCode);
        }
    }
}