123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Store
- {
- public class MaterialStoreOutDetail
- {
- private double quantity;
- private string binCode;
- private string cinvcode;
- public int SorceDetailId { get; set; }
- public double Quantity { get => quantity; set => quantity = value; }
- public string Position { get => binCode; set => binCode = value; }
- public string InvCode { get => cinvcode; set => cinvcode = value; }
- }
- }
|