- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Store
- {
- public class SaleStoreOutDetail
- {
- public string InvCode { get; set; }
- public double Quantity { get; set; }
- public string Position { get; set; }
- public int SourceDetailId { get; set; }
- }
- }
|