123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Store
- {
- /// <summary>
- /// 采购入库单
- /// </summary>
- public class PuStoreIn
- {
- private int id;
- private string code;
- private DateTime date;
- private string depcode;
- private string whcode;
- private IList<PuStoreInDetail> puStoreInDetails = new List<PuStoreInDetail>();
- private string _puCode;
- private string maker;
- private string personCode;
- public IList<PuStoreInDetail> 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; }
- /// <summary>
- /// 源单类别
- /// </summary>
- public string Source { get; set; }
- /// <summary>
- /// 源单编号
- /// </summary>
- public string SourceCode { get; set; }
- }
- }
|