using SqlSugar; namespace OrmTest { /// /// 终端平台配置信息表 /// public class TB_ClientConfig { /// /// 终端平台配置信息表 /// public TB_ClientConfig() { } /// /// 终端平台配置信息表 /// /// 是否给ID赋值 public TB_ClientConfig(bool setid) { } /// /// 主键 雪花ID. 平台唯一Key /// [SugarColumn(IsPrimaryKey = true)] public System.Int64 ID { get; set; } /// /// 平台名称. 如: 友玩安卓APP /// public System.String Name { get; set; } /// /// 微信开放平台的AppID /// public System.String OpenWechatAppID { get; set; } /// /// 微信开放平台的AppSecret /// public System.String OpenWechatAppSecret { get; set; } /// /// 微信支付的商户号 /// public System.String WechatPayMchID { get; set; } /// /// 微信支付的API签名Key /// public System.String WechatPayApiKey { get; set; } /// /// 微信支付V3版本的API签名Key /// public System.String WechatPayApiKeyV3 { get; set; } /// /// 微信支付是否开启 /// public System.Boolean WechatPaymentOpen { get; set; } /// /// 微信提现是否开启 /// public System.Boolean WechatWithdrawOpen { get; set; } /// /// 微信小程序原始ID /// public System.String WechatMiniOriginalID { get; set; } /// /// 支付宝支付的AppID /// public System.String AlipayAppID { get; set; } /// /// 支付宝支付的私钥 /// public System.String AlipayPrivateKey { get; set; } /// /// 支付宝支付的公钥 /// public System.String AlipayPublicKey { get; set; } /// /// 支付宝支付是否开启 /// public System.Boolean AlipayPaymentOpen { get; set; } /// /// 支付宝提现是否开启 /// public System.Boolean AlipayWithdrawOpen { get; set; } /// /// 是否有效 /// public System.Boolean IsValid { get; set; } /// /// 创建时间 /// public System.Int64 CreateDateTime { get; set; } /// /// 创建后台用户ID /// public System.Int64 CreateAdminUserID { get; set; } /// /// 最后修改时间 /// public System.Int64? ModifyDateTime { get; set; } /// /// 最后修改的后台用户ID /// public System.Int64? ModifyAdminUserID { get; set; } /// /// 扩展信息, 一般为JSON格式 /// public System.String Extension { get; set; } } }