Files
shgx_tz_mes_backend_sync/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/InputDtoTemplate.txt

26 lines
553 B
Plaintext
Raw Normal View History

2021-09-08 07:48:18 +08:00
using System;
using System.Collections.Generic;
2021-11-29 21:54:01 +08:00
using ${ModelsNamespace}.Dto;
using ${ModelsNamespace}.Models;
2021-09-08 07:48:18 +08:00
2021-11-29 21:54:01 +08:00
namespace ${DtosNamespace}.Dto
2021-09-08 07:48:18 +08:00
{
/// <summary>
2021-11-29 21:54:01 +08:00
/// ${FunctionName}输入对象模型
2021-09-08 07:48:18 +08:00
/// </summary>
2021-11-29 21:54:01 +08:00
public class ${ModelTypeName}Dto
2021-09-08 07:48:18 +08:00
{
2021-11-29 21:54:01 +08:00
${PropertyName}
2021-09-08 07:48:18 +08:00
}
2021-09-21 20:31:35 +08:00
/// <summary>
2021-11-29 21:54:01 +08:00
/// ${FunctionName}查询对象模型
2021-09-21 20:31:35 +08:00
/// </summary>
2021-11-29 21:54:01 +08:00
public class ${ModelTypeName}QueryDto: PagerInfo
2021-09-08 07:48:18 +08:00
{
2021-11-29 21:54:01 +08:00
${QueryProperty}
2021-09-13 18:38:54 +08:00
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
2021-09-08 07:48:18 +08:00
}
}