2021-09-08 07:48:18 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2021-09-10 18:06:07 +08:00
|
|
|
using {ModelsNamespace}.Dto;
|
2021-09-10 22:15:01 +08:00
|
|
|
using {ModelsNamespace}.Models;
|
2021-09-08 07:48:18 +08:00
|
|
|
|
2021-09-10 18:06:07 +08:00
|
|
|
namespace {DtosNamespace}.Dto
|
2021-09-08 07:48:18 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// {TableNameDesc}输入对象模型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class {ModelTypeName}Dto
|
|
|
|
|
{
|
|
|
|
|
{PropertyName}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class {ModelTypeName}QueryDto: PagerInfo
|
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
}
|