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.
80 lines
2.4 KiB
80 lines
2.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI;
|
|
using System.Web.Mvc.Html;
|
|
|
|
namespace QMAPP.FJC.Web.Models.ParameterQuery
|
|
{
|
|
public class ParameterQueryModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 工作中心
|
|
/// </summary>
|
|
[Description("工作中心")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetAllWorkCenterComboxSource?kind=0", MaxLength = 50)]
|
|
[InputType(inputType.combobox)]
|
|
public string WorkCenter { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备
|
|
/// </summary>
|
|
[Description("设备")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.combobox)]
|
|
public string MachineCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模架
|
|
/// </summary>
|
|
[Description("模架")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.combobox)]
|
|
public string MouldCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 零件条码
|
|
/// </summary>
|
|
[Description("零件条码")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
public string ProductCode { get; set; }
|
|
|
|
[Description("加工日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8, FormatDate = "yyyy-MM-dd HH:mm:ss")]
|
|
[InputType(inputType.datebox)]
|
|
public string CREATEDATESTART { get; set; }
|
|
|
|
[Description("至")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8, FormatDate = "yyyy-MM-dd HH:mm:ss")]
|
|
[InputType(inputType.datebox)]
|
|
public string CREATEDATEEND { get; set; }
|
|
|
|
/// <summary>
|
|
/// 表格视图名称,不指定则加载默认视图
|
|
/// </summary>
|
|
public string GridViewName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数列已加载
|
|
/// </summary>
|
|
public bool ColumnsLoaded { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数列名
|
|
/// </summary>
|
|
public List<Entity.Basic.ProcessParameter> ParamColumns { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数表
|
|
/// </summary>
|
|
public string Tables { get; set; }
|
|
/// <summary>
|
|
/// 字段
|
|
/// </summary>
|
|
public string Fileds { get; set; }
|
|
}
|
|
}
|