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