参考:https://github.com/domaindrivendev/Swashbuckle.AspNetCore#omit-arbitrary-operations
在Action 上加[ApiExplorerSettings(IgnoreApi = true)]
[HttpGet]
[ApiExplorerSettings(IgnoreApi = true)]
public ActionResult Index(string appKey , string username )
{
//todo
}