You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB
C#

using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "sp_GetRecordByPageOrder", DisableSyncStructure = true)]
public partial class SpGetRecordByPageOrder {
[JsonProperty, Column(Name = "@fldName", DbType = "varchar(255)", IsNullable = false)]
public string FldName { get; set; }
[JsonProperty, Column(Name = "@IsReCount")]
public bool IsReCount { get; set; }
[JsonProperty, Column(Name = "@OrderfldName", DbType = "varchar(255)", IsNullable = false)]
public string OrderfldName { get; set; }
[JsonProperty, Column(Name = "@OrderType")]
public bool OrderType { get; set; }
[JsonProperty, Column(Name = "@PageIndex")]
public int PageIndex { get; set; }
[JsonProperty, Column(Name = "@PageSize")]
public int PageSize { get; set; }
[JsonProperty, Column(Name = "@StatfldName", DbType = "varchar(255)", IsNullable = false)]
public string StatfldName { get; set; }
[JsonProperty, Column(Name = "@strWhere", DbType = "varchar(1000)", IsNullable = false)]
public string StrWhere { get; set; }
[JsonProperty, Column(Name = "@tblName", DbType = "varchar(255)", IsNullable = false)]
public string TblName { get; set; }
}
}