16 lines
446 B
C#
16 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.DTO;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SCENE : IRepository<RES_SCENE>
|
|
{
|
|
List<ResSceneView> GetList(ref Pager pager, QueryUserComboDto usercomboDto, string nickName, decimal? sceneType, DateTime? sTime, DateTime? eTime);
|
|
List<ResSceneType> GetSceneType();
|
|
}
|
|
}
|