1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Ant.Service.Common
- {
-
-
-
- public class QueryObject
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public Object Value { get; set; }
-
-
-
- public Type OType { get; set; }
- }
- }
|