TPRD_Log.cs 835 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPRD_Log
  7. {
  8. public Guid C_Code { get; set; }
  9. public Guid C_ProductCode { get; set; }
  10. public int I_Type { get; set; }
  11. public string C_StoreCode { get; set; }
  12. public string C_DeviceCode { get; set; }
  13. public string C_SpotCode { get; set; }
  14. public string C_AlarmMsg { get; set; }
  15. public string C_Remark { get; set; }
  16. public Guid C_CreateBy { get; set; }
  17. public DateTime D_CreateOn { get; set; }
  18. public virtual TSYS_User C_CreateByNavigation { get; set; }
  19. public virtual TPRD_Product C_ProductCodeNavigation { get; set; }
  20. public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
  21. }
  22. }