using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; using NPOI.SS.UserModel; namespace Myshipping.Application.Entity { /// /// 任务API配置 /// [SugarTable("task_api_info")] [Description("任务主表")] public class TaskAPIInfo : TaskManageDbEntity { /// /// API名称 /// public string APIName { get; set; } /// /// 请求地址 /// public string URL { get; set; } /// /// 请求方式 /// public string RequestMethod { get; set; } /// /// 请求key /// public string Key { get; set; } /// /// 请求密钥 /// public string SecretKey { get; set; } /// /// 平台代码 /// public string SYSTEM_CODE { get; set; } /// /// 平台名称 /// public string SYSTEM_NAME { get; set; } } }