You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
using NPOI.SS.UserModel;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务API配置
|
|
/// </summary>
|
|
[SugarTable("task_api_info")]
|
|
[Description("任务主表")]
|
|
public class TaskAPIInfo : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// API名称
|
|
/// </summary>
|
|
public string APIName { get; set; }
|
|
/// <summary>
|
|
/// 请求地址
|
|
/// </summary>
|
|
public string URL { get; set; }
|
|
/// <summary>
|
|
/// 请求方式
|
|
/// </summary>
|
|
public string RequestMethod { get; set; }
|
|
/// <summary>
|
|
/// 请求key
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
/// <summary>
|
|
/// 请求密钥
|
|
/// </summary>
|
|
public string SecretKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台代码
|
|
/// </summary>
|
|
public string SYSTEM_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台名称
|
|
/// </summary>
|
|
public string SYSTEM_NAME { get; set; }
|
|
}
|
|
}
|