TInstockinfo.cs 832 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TInstockinfo
  6. {
  7. public long Gid { get; set; }
  8. public int? ShiftNo { get; set; }
  9. public int? Sno { get; set; }
  10. public string ClassNo { get; set; }
  11. public string CmdNo { get; set; }
  12. public string Name { get; set; }
  13. public string OperNo { get; set; }
  14. public byte? Type { get; set; }
  15. public int? Price { get; set; }
  16. public string Unit { get; set; }
  17. public int? InStoreNum { get; set; }
  18. public int? Storage { get; set; }
  19. public int? TaxPer { get; set; }
  20. public DateTime? InStoreTime { get; set; }
  21. public string Specification { get; set; }
  22. public string Reason { get; set; }
  23. }
  24. }