PublicAccountSet.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Bs
  4. {
  5. public partial class PublicAccountSet
  6. {
  7. public int Id { get; set; }
  8. public string AliyunAndroidActivity { get; set; }
  9. public string AliyunAndroidNotifyTitle { get; set; }
  10. public string AliyunRegionId { get; set; }
  11. public string SmsApiDefaultTemplate { get; set; }
  12. public string SmsApiUserId { get; set; }
  13. public string SmsApiSign { get; set; }
  14. public string SmsApiPwd { get; set; }
  15. public string ErpAppCode { get; set; }
  16. public string ErpApiUrl { get; set; }
  17. public string MeiQiaAppKey { get; set; }
  18. public string MobAppSecret { get; set; }
  19. public string MobAppKey { get; set; }
  20. public string AliyunPushIosAppSecret { get; set; }
  21. public string AliyunPushIosAppId { get; set; }
  22. public string AliyunPushAndroidAppSecret { get; set; }
  23. public string AliyunPushAndroidAppId { get; set; }
  24. public string AliyunAccessKeySecret { get; set; }
  25. public string AliyunAccessKeyId { get; set; }
  26. public string QqIosAppKey { get; set; }
  27. public string QqIosAppId { get; set; }
  28. public string QqAndroidAppKey { get; set; }
  29. public string QqAndroidAppId { get; set; }
  30. public string WeChatMiniAppSecret { get; set; }
  31. public string WeChatMiniAppId { get; set; }
  32. public string ServerIp { get; set; }
  33. public string WeChatOpenAppSecret { get; set; }
  34. public string WeChatOpenAppId { get; set; }
  35. public string WeChatPayKey { get; set; }
  36. public string WeChatMchId { get; set; }
  37. public string WeChatAppSecret { get; set; }
  38. public string WeChatAppId { get; set; }
  39. public string AlipayPublicKey { get; set; }
  40. public string AlipayPrivateKey { get; set; }
  41. public string AlipayPartnerId { get; set; }
  42. public string AlipayAppId { get; set; }
  43. }
  44. }