using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 接口认证 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_INTERFACEOAUTH")] public class InterfaceOauthEntity : CLDEntityBase { /// /// 应用id. /// [SugarColumn(ColumnName = "F_APPID")] public string AppId { get; set; } /// /// 应用名称. /// [SugarColumn(ColumnName = "F_APPNAME")] public string AppName { get; set; } /// /// 应用秘钥. /// [SugarColumn(ColumnName = "F_APPSECRET")] public string AppSecret { get; set; } /// /// 验证签名. /// [SugarColumn(ColumnName = "F_VERIFYSIGNATURE")] public int? VerifySignature { get; set; } /// /// 使用期限. /// [SugarColumn(ColumnName = "F_USEFULLIFE")] public DateTime? UsefulLife { get; set; } /// /// 白名单. /// [SugarColumn(ColumnName = "F_WHITELIST")] public string WhiteList { get; set; } /// /// 黑名单. /// [SugarColumn(ColumnName = "F_BLACKLIST")] public string BlackList { get; set; } /// /// 排序. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 说明. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 接口列表. /// [SugarColumn(ColumnName = "F_DATAINTERFACEIDS")] public string DataInterfaceIds { get; set; } }