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.
32 lines
1.1 KiB
32 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity
|
|
{
|
|
public class FormICSINVReceiptUIModel:ICSINVReceipt
|
|
{
|
|
public string ID { get; set; }
|
|
public string ReceiptNO { get; set; }
|
|
//库别代码
|
|
public string StorageID { get; set; }
|
|
public string RECSTATUS { get; set; }
|
|
//供应商代码
|
|
public string VENDORCODE { get; set; }
|
|
public string RECTYPE { get; set; }
|
|
public string MEMO { get; set; }
|
|
public DateTime? CreateTIME { get; set; }
|
|
public string CreateUSER { 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; }
|
|
//是否所有入库单明细都已入库,Y/N
|
|
public string ISALLINSTORAGE { get; set; }
|
|
|
|
public FormICSStorageUIModel sto { get; set; }
|
|
public FormICSVendorUIModel ven { get; set; }
|
|
}
|
|
}
|