You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
512 B
15 lines
512 B
using Tiobon.Core.Model;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 开班管理(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_OpenClassServices : IBaseServices<Ghre_OpenClass, Ghre_OpenClassDto, InsertGhre_OpenClassInput, EditGhre_OpenClassInput>
|
|
{
|
|
Task<ServiceResult<List<Ghre_OpenClassStaffDto>>> QueryStaff(long Id);
|
|
|
|
Task<ServiceResult<List<Ghre_OpenClassFeeDto>>> QueryGroupFee(long Id);
|
|
|
|
Task<ServiceResult<List<Ghre_OpenClassFeeDto>>> QueryPersonalFee(long Id);
|
|
} |