V_PRD_Product_Info.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class V_PRD_Product_Info
  7. {
  8. public Guid C_Code { get; set; }
  9. public string C_QRCode { get; set; }
  10. public string C_SKUCode { get; set; }
  11. public string C_StoreCode { get; set; }
  12. public string C_DeviceCode { get; set; }
  13. public Guid? C_SpotCode { get; set; }
  14. public string C_AreaCode { get; set; }
  15. public decimal? F_Map_X { get; set; }
  16. public decimal? F_Map_Y { get; set; }
  17. public DateTime? D_ProdDate { get; set; }
  18. public DateTime? D_ValiDate { get; set; }
  19. public string C_ImageUrl { get; set; }
  20. public DateTime? D_LastISP { get; set; }
  21. public int? I_IsAlarm { get; set; }
  22. public string C_AlarmMsg { get; set; }
  23. public int? I_Sort { get; set; }
  24. public string C_Remark { get; set; }
  25. public int I_Status { get; set; }
  26. public DateTime D_CreateOn { get; set; }
  27. public DateTime? D_LastUpdatedOn { get; set; }
  28. public string C_Name { get; set; }
  29. public string C_Spec { get; set; }
  30. public string C_Brand { get; set; }
  31. public string C_Vender { get; set; }
  32. public string C_ProdArea { get; set; }
  33. public string C_Unit { get; set; }
  34. public string C_ImagePath { get; set; }
  35. public string C_IconPath { get; set; }
  36. public int? I_MinStock { get; set; }
  37. public int? I_ValiDays { get; set; }
  38. public int? I_AlarmDays { get; set; }
  39. public string C_Status { get; set; }
  40. public Guid? TypeCode { get; set; }
  41. public string TypeName { get; set; }
  42. public string TypeStatus { get; set; }
  43. public string C_StatusName { get; set; }
  44. public string C_StoreName { get; set; }
  45. }
  46. }