using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.Model { public partial class InterfaceModel { /// /// 接口描述 /// public string des { get; set; } /// /// 接口请求方法 /// public string method { get; set; } /// /// 接口名称 /// public string name { get; set; } /// /// 接口参数 /// public string parameter { get; set; } /// /// 接口地址 /// public string url { get; set; } } }