mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-02 23:26:36 +08:00
18 lines
639 B
Plaintext
18 lines
639 B
Plaintext
using Yi.Framework.Application.Contracts.#ModelName#;
|
|
using NET.AutoWebApi.Setting;
|
|
using Yi.Framework.Application.Contracts.#ModelName#.Dtos;
|
|
using Yi.Framework.Domain.#ModelName#.Entities;
|
|
using Yi.Framework.Ddd.Services;
|
|
|
|
namespace Yi.Framework.Application.#ModelName#
|
|
{
|
|
/// <summary>
|
|
/// #EntityName#服务实现
|
|
/// </summary>
|
|
[AppService]
|
|
public class #EntityName#Service : CrudAppService<#EntityName#Entity, #EntityName#GetOutputDto, #EntityName#GetListOutputDto, long, #EntityName#GetListInputVo, #EntityName#CreateInputVo, #EntityName#UpdateInputVo>,
|
|
I#EntityName#Service, IAutoApiService
|
|
{
|
|
}
|
|
}
|