初始化CRICS
This commit is contained in:
30
Service/ISysHotelManager.cs
Normal file
30
Service/ISysHotelManager.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
using CommonEntity;
|
||||
|
||||
namespace Service
|
||||
{
|
||||
public interface ISysHotelManager : IGenericManager<SysHotel>
|
||||
{
|
||||
IList<SysHotel> LoadAllByPage(out long total, int page, int rows, string order, string sort, string query, int? groupId);
|
||||
IList<SysHotel> LoadFCS_PushData();
|
||||
|
||||
SysHotel GetByCode(string code);
|
||||
|
||||
SysHotel GetByCode(string code, DateTime date);
|
||||
|
||||
SysHotel GetByAssociatedAccount(string associatedAccount);
|
||||
|
||||
SysHotel GetByDomainUrl(string domainUrl);
|
||||
|
||||
void UpdateDayTime(SysHotel entity);
|
||||
|
||||
|
||||
List<CommonEntity.KongQi> GetNeedData();
|
||||
|
||||
List<SomeDeviceExistsData> IsExistsSomeDeviceRoomModal(int id, string roomnum, string start_address, string end_address);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user