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.
46 lines
1.5 KiB
46 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity
|
|
{
|
|
public class FormICSINVReceiptDetailUIModel : ICSINVReceiptDetail
|
|
{
|
|
//入库单
|
|
public string ID { get; set; }
|
|
public string ReceiptID { get; set; }
|
|
public string ReceiptNO { get; set; }
|
|
public int ReceiptLine { get; set; }
|
|
//采购单
|
|
public string ORDERNO { get; set; }
|
|
public int ORDERLINE { get; set; }
|
|
//入库单状态
|
|
public string RECSTATUS { get; set; }
|
|
//IQC检验状态
|
|
public string IQCStatus { get; set; }
|
|
public string MEMO { get; set; }
|
|
//生产订单号
|
|
public string MOCODE { get; set; }
|
|
//物料代码
|
|
public string ITEMCODE { get; set; }
|
|
public decimal PLANQTY { get; set; }
|
|
public decimal QualifyQTY { get; set; }
|
|
//供应商物料批号
|
|
public string VenderLotNO { get; set; }
|
|
public int ACTQTY { get; set; }
|
|
public DateTime? RECTIME { get; set; }
|
|
public string RECUSER { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime? MTIME { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
public string INVUSER { get; set; }
|
|
public string ISINSTORAGE { get; set; }
|
|
|
|
|
|
public FormICSINVENTORYUIModel inv { get; set; }
|
|
public FormICSMOUIModel mo { get; set; }
|
|
}
|
|
}
|