mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-11 12:10:50 +08:00
18 lines
640 B
Plaintext
18 lines
640 B
Plaintext
using #NameSpaces#.Application.Contracts.#ModelName#;
|
|
using Cike.AutoWebApi.Setting;
|
|
using #NameSpaces#.Application.Contracts.#ModelName#.Dtos;
|
|
using #NameSpaces#.Domain.#ModelName#.Entities;
|
|
using Yi.Framework.Ddd.Services;
|
|
|
|
namespace #NameSpaces#.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
|
|
{
|
|
}
|
|
}
|