using SqlSugar;
namespace WcsMain.DataBase.TableEntity;
///
/// API 基础资料表
///
[SugarTable("tbl_app_api_base_info")]
public class AppApiBaseInfo
{
///
/// API 键
///
[SugarColumn(ColumnName = "api_key", IsPrimaryKey = true)]
public string? ApiKey { get; set; }
///
/// 系统名称
///
[SugarColumn(ColumnName = "system_name")]
public string? SystemName { get; set; }
///
/// 地址类型
///
[SugarColumn(ColumnName = "address_type")]
public int? AddressType { get; set; }
///
/// 地址值
///
[SugarColumn(ColumnName = "address")]
public string? Address { get; set; }
///
/// API 名称
///
[SugarColumn(ColumnName = "api_name")]
public string? ApiName { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string? Remark { get; set; }
}