We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class A { /**
class B extend A {
/**
} }
我用这种方式上传到yapi上,是没有作用的,我应该怎么做?
The text was updated successfully, but these errors were encountered:
没有做这样的支持,不过你可以自定义配置来试试:
json.class.parse.before=groovy:``` it.methods().each { def name = it.name() if(!name.startsWith("get")){ return } logger.debug("name:"+name) def doc = it.doc() if(tool.isNullOrEmpty(doc)){ return } logger.debug("doc:"+doc) session[tool.uncapitalize(name.substring(3))] = doc } ``` field.doc=groovy:session[it.name()]
Sorry, something went wrong.
No branches or pull requests
class A {
/**
**/
private String name;
}
class B extend A {
/**
*/
public String getName(){
}
}
我用这种方式上传到yapi上,是没有作用的,我应该怎么做?
The text was updated successfully, but these errors were encountered: