using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
///
/// 接口授权
///
[SugarTable("djy_api_auth")]
[Description("接口授权")]
public class DjyApiAuth : DBEntityTenant
{
///
/// 接口代码
///
public string ApiCode { get; set; }
///
/// 接口名称
///
public string ApiName { get; set; }
///
/// 接口KEY
///
public string ApiKey { get; set; }
///
/// 接口秘钥
///
public string ApiSecret { get; set; }
///
/// 有效截止日期
///
public DateTime? ExpireDate { get; set; }
///
/// 禁用标志
///
public bool IsDisable { get; set; }
///
/// 租户名称
///
public string TenantName { get; set; }
///
/// 用户ID
///
public long? UserId { get; set; }
///
/// 用户代码
///
public string UserCode { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
}
}