You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.0 KiB

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. /// <summary>
  9. /// 库存日志表操作模型
  10. /// </summary>
  11. public class ICSWareHouseLotInfoLogEdit : UniversalEditModel
  12. {
  13. public string ID { get; set; }
  14. public string Identification { get; set; }
  15. public string TransID { get; set; }
  16. public string TransCode { get; set; }
  17. public string TransSequence { get; set; }
  18. public string LotNo { get; set; }
  19. public string InvCode { get; set; }
  20. public string FromWarehouseCode { get; set; }
  21. public string FromLocationCode { get; set; }
  22. public string ToWarehouseCode { get; set; }
  23. public string ToLocationCode { get; set; }
  24. public decimal Quantity { get; set; }
  25. public string Memo { get; set; }
  26. public bool? Lock { get; set; }
  27. public string TransType { get; set; }
  28. public string BusinessCode { get; set; }
  29. public bool? ERPUpload { get; set; }
  30. public string ERPID { get; set; }
  31. public string ERPDetailID { get; set; }
  32. public string ERPCode { get; set; }
  33. public string ERPSequence { get; set; }
  34. public string LogID { get; set; }
  35. public string MergeID { get; set; }
  36. public string MUSER { get; set; }
  37. public string MUSERName { get; set; }
  38. public DateTime MTIME { get; set; }
  39. public string WorkPoint { get; set; }
  40. public string EATTRIBUTE1 { get; set; }
  41. public string EATTRIBUTE2 { get; set; }
  42. public string EATTRIBUTE3 { get; set; }
  43. public string EATTRIBUTE4 { get; set; }
  44. public string EATTRIBUTE5 { get; set; }
  45. public string EATTRIBUTE6 { get; set; }
  46. public string EATTRIBUTE7 { get; set; }
  47. public string EATTRIBUTE8 { get; set; }
  48. public string EATTRIBUTE9 { get; set; }
  49. public string EATTRIBUTE10 { get; set; }
  50. }
  51. }