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.
61 lines
1.9 KiB
61 lines
1.9 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using QMFrameWork.WebUI.Attribute;
|
||
|
using QMFrameWork.WebUI;
|
||
|
|
||
|
namespace QMAPP.FJC.Web.Models.ProductPetrospect
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块编号:M5-1
|
||
|
/// 作 用:产品档案页面模型
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年06月08日
|
||
|
///</summary>
|
||
|
public class ProductArchivesModel
|
||
|
{
|
||
|
///<summary>
|
||
|
///产品条码
|
||
|
///</summary>
|
||
|
[Description("产品条码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50,Width=180)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string ERMISCODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///产品条码
|
||
|
///</summary>
|
||
|
[Description("总成条码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string MAINCODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///工序类别
|
||
|
///</summary>
|
||
|
[Description("工序类别")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string PROCESSTYPE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///零件类别
|
||
|
///</summary>
|
||
|
[Description("零件类别")]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string PRODUCTTYPE{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品加工参数JSON
|
||
|
/// </summary>
|
||
|
public String ListProductArchivesJson { get; set; }
|
||
|
|
||
|
public FJC.Entity.Operation.Product ProductInfo { get; set; }
|
||
|
}
|
||
|
}
|