mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 18:20:52 +08:00
21 lines
508 B
C#
21 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Infrastructure.Ddd.Dtos;
|
|
using Yi.Framework.Module.WebFirstManager.Enums;
|
|
|
|
namespace Yi.Framework.Module.WebFirstManager.Dtos.Field
|
|
{
|
|
public class FieldGetListInput:PagedAndSortedResultRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 字段名称
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
|
|
public long? TableId { get; set; }
|
|
}
|
|
}
|