ab56a9bcf7
SVN-Revision: r240
33 lines
957 B
C#
33 lines
957 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.Control.SiftColControl
|
|
{
|
|
/// <summary>
|
|
/// 按钮模型
|
|
/// </summary>
|
|
public class DragItemModel
|
|
{
|
|
public string name { get; set; }
|
|
public string caption { get; set; }
|
|
public string oper { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 操作类型
|
|
/// </summary>
|
|
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"; } }
|
|
}
|
|
}
|