Files
Web_CRICS_Server_VS2010_Prod/Dao/ISysHotelRepository.cs
TianMaiCheng 72fa1a5524 FCS的 用户名和密码 每个酒店不一样
给 浩 哥增加 专门的碳达人接口
2026-03-10 15:57:43 +08:00

31 lines
830 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
using CommonEntity;
namespace Dao
{
public interface ISysHotelRepository : IRepository<SysHotel>
{
IQueryable<SysHotel> LoadAllByPage(out long total, int page, int rows, string order, string sort, string query, int? groupId);
SysHotel GetByCode(string code);
SysHotel GetByAssociatedAccount(string associatedAccount);
SysHotel GetByDomainUrl(string domainUrl);
SysHotel GetByETV_HotelId(string hotelid);
IList<SysHotel> GetByGroup(SysHotelGroup group);
List<KongQi> GetNeedData();
List<SomeDeviceExistsData> IsExistsSomeDeviceRoomModal(int id, string roomnum, string start_address, string end_address);
List<SysHotel> get_fcs_hotels();
}
}