删除文件

This commit is contained in:
不做码农
2021-12-02 14:19:42 +08:00
parent b97a15015d
commit 668bfa765b
8 changed files with 0 additions and 754 deletions

View File

@@ -1,38 +0,0 @@
using System;
using System.Collections.Generic;
using ZR.Model.Dto;
using ZR.Model.Models;
namespace ZR.Model.Dto
{
/// <summary>
/// 代码生成演示输入对象
/// </summary>
public class GendemoDto
{
public int Id { get; set; }
public string Name { get; set; }
public string Icon { get; set; }
public int ShowStatus { get; set; }
public DateTime? AddTime { get; set; }
public int? Sex { get; set; }
public int? Sort { get; set; }
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
public string Remark { get; set; }
}
/// <summary>
/// 代码生成演示查询对象
/// </summary>
public class GendemoQueryDto : PagerInfo
{
public int Id { get; set; }
public string Name { get; set; }
public int ShowStatus { get; set; }
public DateTime AddTime { get; set; }
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
}
}