using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 接口 /// public class WebApi : CommonEntity, IDbAuditLogIgnore { /// /// 编号 /// [Required] public string Code { get; set; } /// /// 名称 /// [Required] public string Name { get; set; } /// /// 请求方式 /// public EnumWebApiMethod Method { get; set; } /// /// 路由地址 /// public string Url { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } } }