基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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"; } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user