Files
lserp_cs_6.0/插件库/Lskj.Control/SiftColControl/DragItemModel.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

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"; } }
}
}