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.
36 lines
1004 B
36 lines
1004 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity
|
|
{
|
|
public class FormICSSEGUIModel:ICSSEG
|
|
{
|
|
public string ID { get; set; }
|
|
//车间代码
|
|
public string SEGCODE { get; set; }
|
|
//车间次序
|
|
public int SEGSEQ { get; set; }
|
|
//车间描述
|
|
public string SEGDESC { get; set; }
|
|
//班制ID
|
|
public string SHIFTTYPEID { get; set; }
|
|
//工厂ID
|
|
public string SEGManager { get; set; }
|
|
//车间主任
|
|
public string FACID { 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; }
|
|
//班制
|
|
public FormICSShifTypeUIModel shifType { get; set; }
|
|
//工厂
|
|
public FormICSFactoryUIModel fac { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|