基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
@@ -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"; } }
}
}