1
This commit is contained in:
12
iMES.Calendar/IServices/Calendar/ICal_HolidayService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_HolidayService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_HolidayService : IService<Cal_Holiday>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_PlanService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_PlanService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_PlanService : IService<Cal_Plan>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_PlanShiftService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_PlanShiftService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_PlanShiftService : IService<Cal_PlanShift>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_PlanTeamService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_PlanTeamService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_PlanTeamService : IService<Cal_PlanTeam>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_TeamMemberService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_TeamMemberService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamMemberService : IService<Cal_TeamMember>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_TeamService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_TeamService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamService : IService<Cal_Team>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
iMES.Calendar/IServices/Calendar/ICal_TeamShiftService.cs
Normal file
12
iMES.Calendar/IServices/Calendar/ICal_TeamShiftService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamShiftService : IService<Cal_TeamShift>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_Holiday类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_HolidayService
|
||||
{
|
||||
}
|
||||
}
|
||||
27
iMES.Calendar/IServices/Calendar/Partial/ICal_PlanService.cs
Normal file
27
iMES.Calendar/IServices/Calendar/Partial/ICal_PlanService.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
*所有关于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);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_PlanShift类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_PlanShiftService
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_PlanTeam类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_PlanTeamService
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_TeamMember类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamMemberService
|
||||
{
|
||||
}
|
||||
}
|
||||
13
iMES.Calendar/IServices/Calendar/Partial/ICal_TeamService.cs
Normal file
13
iMES.Calendar/IServices/Calendar/Partial/ICal_TeamService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_Team类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamService
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*所有关于Cal_TeamShift类的业务代码接口应在此处编写
|
||||
*/
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Core.Utilities;
|
||||
using System.Linq.Expressions;
|
||||
namespace iMES.Calendar.IServices
|
||||
{
|
||||
public partial interface ICal_TeamShiftService
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user