123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Store
- {
- public class PuStoreInDetail
- {
- private int id;
- private int puStoreInId;
- private string invcode;
- private string unit;
- private double quantity;
- public string Batch { get; set; }
- public int Id { get => id; set => id = value; }
- public int PuStoreInId { get => puStoreInId; set => puStoreInId = value; }
- public string Invcode { get => invcode; set => invcode = value; }
- public string Unit { get => unit; set => unit = value; }
- public double Quantity { get => quantity; set => quantity = value; }
- public string Position { get; set; }
- public int SorceDetailId { get; set; }
- }
- }
|