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.
 
 

48 lines
1.3 KiB

  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.KitChen.GroupMeal.Core.Entity
  9. {
  10. [SugarTable("BPA_PayTemplateInfo")]
  11. public class BPA_PayTemplateInfo: IBaseGroupIdEntity
  12. {
  13. public string PayTemplateId { get; set; }
  14. public string AppId { get; set; }
  15. /// <summary>
  16. /// 1.微信 2.支付宝
  17. /// </summary>
  18. public int PayType { get; set; }
  19. /// <summary>
  20. /// 支付ID 支付宝的Pid 微信的 MCHid
  21. /// </summary>
  22. [SugarColumn(ColumnDataType = "varchar(3000)", IsNullable = false)]
  23. public string PId { get; set; }
  24. /// <summary>
  25. /// 支付宝的 pk 微信的appk
  26. /// </summary>
  27. [SugarColumn(ColumnDataType = "varchar(3000)", IsNullable = false)]
  28. public string Key { get; set; }
  29. /// <summary>
  30. /// 私钥货密码
  31. /// </summary>
  32. [SugarColumn(ColumnDataType = "varchar(3000)", IsNullable = false)]
  33. public string PrivateKey { get; set; }
  34. /// <summary>
  35. /// 公钥或证书
  36. /// </summary>
  37. [SugarColumn(ColumnDataType = "varchar(3000)", IsNullable = false)]
  38. public string PubLicKey { get; set; }
  39. }
  40. }