MaterielStoreOutDetail.cs 551 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Store
  6. {
  7. public class MaterialStoreOutDetail
  8. {
  9. private double quantity;
  10. private string binCode;
  11. private string cinvcode;
  12. public int SorceDetailId { get; set; }
  13. public double Quantity { get => quantity; set => quantity = value; }
  14. public string Position { get => binCode; set => binCode = value; }
  15. public string InvCode { get => cinvcode; set => cinvcode = value; }
  16. }
  17. }