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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.Entity;
namespace ICSSoft.Frame.APP.Entity { public class FormICSEQPSTPUIModelNew : ICSEQPSTP { public string ID { get; set; } public string ItemCode { get; set; }
public string OPCODE { get; set; } public string EQPCODE { get; set; }
public string ETTRCODE { get; set; } //标准工时
public decimal STIME { get; set; } //准备工时
public decimal RTIME { get; set; } //调机工时
public decimal TJTIME { get; set; } //加工工时
public decimal WORKTIME { get; set; } //检验工时
public decimal JYTIME { get; set; } //夹装工时
public decimal JZTIME { get; set; }
public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime? MTIME { get; set; } public string WorkPoint { get; set; } public string EATTRIBUTE1 { get; set; }
//20180625新增
//外协属性
public string OutsourcingProperties { get; set; } //刀片型号和品牌
public string BladeModelAndBrand { get; set; } //工装编号:
public string ToolingNo { get; set; } //夹具
public string Jiaju { get; set; }
} }
|