| 1234567891011121314151617181920 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using WeApp.BasicInfo.StudentTip.Dto;
- namespace WeApp.BasicInfo.StudentTip
- {
- public interface IStudentTipAppService : IIwbZeroAsyncCrudAppService<StudentTipDto, string, IwbPagedRequestDto, StudentTipCreateDto, StudentTipUpdateDto>
- {
- #region Get
- Task<StudentTipInfo> GetEntity(EntityDto<string> input);
- Task<StudentTipInfo> GetEntityById(string id);
- Task<StudentTipInfo> GetEntityByNo(string no);
- #endregion Get
- }
- }
|