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;
namespace ICSSoft.Frame.Data.Entity { public class FormICSInvTransferDetailUIModel : ICSInvTransferDetail { public string ID { get; set; } public string TransferID { get; set; } public string TransferNO { get; set; } public int TransferLine { get; set; } public string ORDERNO { get; set; } public int ORDERLINE { get; set; } public string TransferSTATUS { get; set; } public string MEMO { get; set; } public string ITEMCODE { get; set; } public string MOCODE { get; set; } public decimal PLANQTY { get; set; } public decimal ACTQTY { get; set; } public string CustomerCode { get; set; } public string CUSTOMERNAME { get; set; }
public string FROMStorageCode { get; set; } public string FROMStackCode { get; set; } public string TOStorageCode { get; set; } public string TOStackCode { get; set; } public string RECEIVE { get; set; } public string RECEIVELINE { get; set; } public DateTime? TransferTIME { get; set; } public string TransferUSER { 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 FormICSStorageUIModel storage1 { get; set; } public FormICSStorageUIModel storage2 { get; set; } public FormICSInvTransferUIModel invtransfer { get; set; } public FormICSStackUIModel stack1 { get; set; } public FormICSStackUIModel stack2 { get; set; } public FormICSINVENTORYUIModel inventory { get; set; } public FormICSMOUIModel mo { get; set; }
} }
|