Files
2026-07-10 15:25:05 +08:00

23 lines
513 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Zhaizj.Framework.ORM.Operation {
internal class ConditionInfo {
public Type Type { get; set; }
public String SelectedItem { get; set; }
public String WhereString { get; set; }
public Dictionary<String,Object> Parameters { get; set; }
public int Count { get; set; }
public String Sql { get; set; }
public ObjectInfo State { get; set; }
}
}