2023-01-03 21:03:07 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Yi.Framework.Common.Models;
|
|
|
|
|
using Yi.Framework.DtoModel.#ModelName#.#EntityName#;
|
|
|
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Interface.#ModelName#
|
|
|
|
|
{
|
|
|
|
|
public interface I#EntityName#Service : ICrudAppService<#EntityName#GetListOutput, long, #EntityName#CreateUpdateInput>
|
|
|
|
|
{
|
2023-01-06 12:02:48 +08:00
|
|
|
Task<PageModel<List<#EntityName#GetListOutput>>> PageListAsync(#EntityName#GetListInput input, PageParModel page);
|
2023-01-03 21:03:07 +08:00
|
|
|
}
|
|
|
|
|
}
|