You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
775 B
36 lines
775 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.Model
|
|
{
|
|
public partial class InterfaceModel
|
|
{
|
|
/// <summary>
|
|
/// 接口描述
|
|
/// </summary>
|
|
public string des { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口请求方法
|
|
/// </summary>
|
|
public string method { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口参数
|
|
/// </summary>
|
|
public string parameter { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口地址
|
|
/// </summary>
|
|
public string url { get; set; }
|
|
}
|
|
}
|
|
|