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

15 lines
299 B
Plaintext
Raw Normal View History

2023-01-21 18:09:21 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Ddd.Dtos;
2023-01-21 18:09:21 +08:00
namespace Yi.Framework.Application.Contracts.#ModelName#.Dtos
2023-01-21 18:09:21 +08:00
{
public class #EntityName#GetOutputDto : IEntityDto<long>
2023-01-21 18:09:21 +08:00
{
#EntityField#
}
}