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 System.Threading.Tasks;
namespace ICSSoft.ERPWMS.Entity { public class CreateInventoryLotEntity { //物料条码
public string LotNo { get; set; }
//物料编码
public string InvCode { get; set; }
//来源单据号
public string TransNo { get; set; }
//来源单据行号
public int? TransLine { get; set; }
//生产日期
public DateTime? ProductDate { get; set; }
//生产批号
public string BatchNo { get; set; }
//数量
public decimal? Quantity { get; set; }
//辅计量数量
public decimal AmountRate { get; set; }
//自由项1(版本号)
public string Extension1 { get; set; }
//自由项2
public string Extension2 { get; set; }
//自由项3
public string Extension3 { get; set; }
//自由项4
public string Extension4 { get; set; }
//自由项5
public string Extension5 { get; set; }
//类型(1:采购原料)
public string Type { get; set; }
//打印时间
public int PrintTimes { get; set; }
//最后打印人
public string LastPrintUser { get; set; }
//最后打印时间
public DateTime? LastPrintTime { get; set; }
//失效日期
public DateTime? dDisableDate { get; set; }
//操作人
public string MUSER { get; set; }
//操作人名称
public string MUSERName { get; set; }
//操作时间
public DateTime? MTIME { get; set; }
//站点
public string WorkPoint { get; set; }
//SRM条码Group
public string SRMLotGroup { get; set; } } }
|