using System;
using System.Collections.Generic;
using {ModelsNamespace}.Dto;
using {ModelsNamespace}.Models;
namespace {DtosNamespace}.Dto
{
///
/// {FunctionName}输入对象模型
///
public class {ModelTypeName}Dto
{
{PropertyName}
}
///
/// {FunctionName}查询对象模型
///
public class {ModelTypeName}QueryDto: PagerInfo
{
{QueryProperty}
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
}
}