天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
namespace QMAPP.Common.Web.Models
{
/// <summary>
/// 多条件查询
/// </summary>
public class QueryMoreModel : QDGModel
{
[Description("查询类型")]
[HTMLInput(UpdateRead = true, required = false, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string QueryType { get; set; }
[Description("显示值")]
[HTMLInput(UpdateRead = true, required = false, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string TextField { get; set; }
[Description("隐藏值")]
[HTMLInput(UpdateRead = true, required = false, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string ValueField { get; set; }
}
}