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.
 
 

33 lines
753 B

  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Core.System
  9. {
  10. /// <summary>
  11. /// 第三方日志
  12. /// </summary>
  13. [SugarTable("bpa_thirdpartyrequestlog")]
  14. public class BPA_ThirdpartyRequestLog : IBaseEntity, IGroupId
  15. {
  16. public string GroupId { get; set; }
  17. public string RequestUrl { get; set; }
  18. public string ReauestMethod { get; set; }
  19. public string ResultParm { get; set; }
  20. public string ReauestParm { get; set; }
  21. public string IP { get; set; }
  22. public DateTime CreateAt { get; set; } = DateTime.Now;
  23. }
  24. }