PuStoreInDetail.cs 677 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Request
  6. {
  7. public class PuStoreInDetail
  8. {
  9. private int id;
  10. private int puStoreInId;
  11. private string invcode;
  12. private string unit;
  13. private double quantity;
  14. public string Batch { get; set; }
  15. public int Id { get => id; set => id = value; }
  16. public string Invcode { get => invcode; set => invcode = value; }
  17. public double Quantity { get => quantity; set => quantity = value; }
  18. public string Position { get; set; }
  19. public int SorceDetailId { get; set; }
  20. }
  21. }