锐腾搅拌上料功能
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.

31 lines
997 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Frame.Data.Entity
{
public class FormICSITEMTransUIModel : ICSITEMTrans
{
public string ID { get; set; }
public string TransNO { get; set; }
public int TransLine { get; set; }
public string ITEMCODE { get; set; }
public string FRMStorageCODE { get; set; }
public string FRMStackCODE { get; set; }
public string TOStorageCODE { get; set; }
public string TOStackCODE { get; set; }
public decimal TransQTY { get; set; }
public string Memo { get; set; }
public string TransType { get; set; }
public string BusinessCode { get; set; }
public string MUSER { get; set; }
public string MUSERName { get; set; }
public DateTime? MTIME { get; set; }
public string WorkPoint { get; set; }
public FormICSITEMTransLotUIModel Lot { get; set; }
}
}