Files
Yi.Admin/Yi.Framework.Net6/src/module/Yi.Framework.Template/Template/Server/ServiceTemplate.txt

18 lines
639 B
Plaintext
Raw Normal View History

using #NameSpaces#.Application.Contracts.#ModelName#;
using NET.AutoWebApi.Setting;
using #NameSpaces#.Application.Contracts.#ModelName#.Dtos;
using #NameSpaces#.Domain.#ModelName#.Entities;
using Yi.Framework.Ddd.Services;
2023-01-21 18:09:21 +08:00
namespace #NameSpaces#.Application.#ModelName#
2023-01-21 18:09:21 +08:00
{
/// <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
2023-01-21 18:09:21 +08:00
{
}
}