Files
iMES_Net/iMES.Calendar/IServices/Calendar/Partial/ICal_PlanService.cs

28 lines
731 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
/*
*Cal_Plan类的业务代码接口应在此处编写
*/
using iMES.Core.BaseProvider;
using iMES.Entity.DomainModels;
using iMES.Core.Utilities;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace iMES.Calendar.IServices
{
public partial interface ICal_PlanService
{
/// 获取table1的数据
/// </summary>
/// <param name="loadData"></param>
/// <returns></returns>
Task<object> GetTable1Data(PageDataOptions loadData);
/// <summary>
/// 获取table2的数据
/// </summary>
/// <param name="loadData"></param>
/// <returns></returns>
Task<object> GetTable2Data(PageDataOptions loadData);
}
}