You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
520 B
21 lines
520 B
1 month ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
public class DataModelDynamicOrderParemter
|
||
|
{
|
||
|
public string? FieldName { get; set; }
|
||
|
public OrderByType OrderByType { get; set; }
|
||
|
public int TableIndex { get; set; }
|
||
|
}
|
||
|
public class DataModelOrderParemter
|
||
|
{
|
||
|
public string? FieldName { get; set; }
|
||
|
public OrderByType OrderByType { get; set; }
|
||
|
public int TableIndex { get; set; }
|
||
|
}
|
||
|
}
|