using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NX.ERP.Model.Store
{
///
/// 采购入库单
///
public class PuStoreIn
{
private int id;
private string code;
private DateTime date;
private string depcode;
private string whcode;
private IList puStoreInDetails = new List();
private string _puCode;
private string maker;
private string personCode;
public IList Details { get => puStoreInDetails; set => puStoreInDetails = value; }
public int Id { get => id; set => id = value; }
public string Code { get => code; set => code = value; }
public DateTime Date { get => date; set => date = value; }
public string Depcode { get => depcode; set => depcode = value; }
public string Whcode { get => whcode; set => whcode = value; }
public string PuCode { get => _puCode; set => _puCode = value; }
public string Maker { get => maker; set => maker = value; }
public string PersonCode { get => personCode; set => personCode = value; }
public string RdCode { get; set; }
public string SupplierName { get; set; }
public string SupplierCode { get; set; }
///
/// 源单类别
///
public string Source { get; set; }
///
/// 源单编号
///
public string SourceCode { get; set; }
}
}