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.
234 lines
8.1 KiB
234 lines
8.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI;
|
|
using QMAPP.FJC.Entity.SendPlan;
|
|
|
|
namespace QMAPP.FJC.Web.Models.StatisticalAnalysis
|
|
{
|
|
/// <summary>
|
|
/// 模块编号:M10-2
|
|
/// 作 用:生产日报
|
|
/// 作 者:王庆男
|
|
/// 编写日期:2015年07月06日
|
|
///</summary>
|
|
public class ProductionDailyModel : QDGModel
|
|
{
|
|
///<summary>
|
|
///班次名称
|
|
///</summary>
|
|
[Description("班次名称")]
|
|
public string PRODUCESHIFTNAME { get; set; }
|
|
|
|
|
|
/////<summary>
|
|
/////设备名称
|
|
/////</summary>
|
|
//[Description("设备名称")]
|
|
//public string MACHINENAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///班次编号
|
|
///</summary>
|
|
[Description("班次编号")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/InJectionRecorder/GetProductShiftComboxSource", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
public string PRODUCESHIFTTCODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///设备编号
|
|
///</summary>
|
|
[Description("设备编号")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/InJectionRecorder/GetMachineInfoComboxSource", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
public string MACHINECODDE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
[Description("日期")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.datebox)]
|
|
public DateTime STARTCREATEDATE { get; set; }
|
|
/// <summary>
|
|
/// 至
|
|
/// </summary>
|
|
[Description("至")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.datebox)]
|
|
public DateTime ENDCREATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分组数量和
|
|
/// </summary>
|
|
[Description("分组数量和")]
|
|
public string Counts { get; set; }
|
|
|
|
///<summary>
|
|
///设备名称
|
|
///</summary>
|
|
[Description("设备名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINENAME { get; set; }
|
|
|
|
///<summary>
|
|
///设备编码
|
|
///</summary>
|
|
[Description("设备编码")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINECODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///零件类别
|
|
///</summary>
|
|
[Description("零件类别")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTTYPE { get; set; }
|
|
|
|
///<summary>
|
|
///高低配
|
|
///</summary>
|
|
[Description("高低配")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string HB { get; set; }
|
|
|
|
///<summary>
|
|
///颜色
|
|
///</summary>
|
|
[Description("颜色")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string COLOR { get; set; }
|
|
|
|
///<summary>
|
|
///A班计划
|
|
///</summary>
|
|
[Description("A班计划")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string A_COUNT { get; set; }
|
|
|
|
///<summary>
|
|
///A班录入
|
|
///</summary>
|
|
[Description("A班录入")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string A_COMPLETE { get; set; }
|
|
|
|
///<summary>
|
|
///A班系统
|
|
///</summary>
|
|
[Description("A班系统")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string A_FACT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///B班计划
|
|
///</summary>
|
|
[Description("B班计划")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string B_COUNT { get; set; }
|
|
|
|
///<summary>
|
|
///B班录入
|
|
///</summary>
|
|
[Description("B班录入")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string B_COMPLETE { get; set; }
|
|
|
|
///<summary>
|
|
///B班系统
|
|
///</summary>
|
|
[Description("B班系统")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string B_FACT { get; set; }
|
|
|
|
|
|
|
|
///<summary>
|
|
///C班计划
|
|
///</summary>
|
|
[Description("C班计划")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string C_COUNT { get; set; }
|
|
|
|
///<summary>
|
|
///C班录入
|
|
///</summary>
|
|
[Description("C班录入")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string C_COMPLETE { get; set; }
|
|
|
|
///<summary>
|
|
///C班系统
|
|
///</summary>
|
|
[Description("C班系统")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string C_FACT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///合计计划
|
|
///</summary>
|
|
[Description("合计计划")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PLAN_TOTAL { get; set; }
|
|
|
|
///<summary>
|
|
///合计录入
|
|
///</summary>
|
|
[Description("合计录入")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string COMPLETE_TOTAL { get; set; }
|
|
|
|
///<summary>
|
|
///合计系统
|
|
///</summary>
|
|
[Description("合计系统")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string FACT_TOTAL { get; set; }
|
|
|
|
public string results;
|
|
|
|
public string arr;
|
|
}
|
|
}
|