using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace Lskj.Control.SiftColControl
{
///
/// 按钮模型
///
public class DragItemModel
{
public string name { get; set; }
public string caption { get; set; }
public string oper { get; set; }
public string value { get; set; }
}
///
/// 操作类型
///
public static class OperType
{
public static string DaYu { get { return ">"; } }
public static string XiaoYu { get { return "<"; } }
public static string DengYu { get { return "="; } }
public static string DaYuAndDengYu { get { return ">="; } }
public static string XiaoYuAndDengYu { get { return "<="; } }
public static string In { get { return "in"; } }
public static string Like { get { return "like"; } }
}
}