package org.yeshi.utils.generater.vo.service;
|
|
/**
|
* @author Administrator
|
* @title: ServiceMetodInfo
|
* @description: 服务函数的输出信息
|
* @date 2021/9/27 17:12
|
*/
|
public class ServiceMetodInfoVO {
|
//注释
|
private String note;
|
//访问控制
|
private String visiteAccess;
|
//返回类型
|
private String returnType;
|
//函数名称
|
private String name;
|
//参数
|
private String params;
|
//方法内容
|
private String content;
|
|
private String exceptions;
|
|
public ServiceMetodInfoVO(String visiteAccess, String returnType, String name, String params) {
|
this.visiteAccess = visiteAccess;
|
this.returnType = returnType;
|
this.name = name;
|
this.params = params;
|
}
|
|
public String getVisiteAccess() {
|
return visiteAccess;
|
}
|
|
public void setVisiteAccess(String visiteAccess) {
|
this.visiteAccess = visiteAccess;
|
}
|
|
public String getReturnType() {
|
return returnType;
|
}
|
|
public void setReturnType(String returnType) {
|
this.returnType = returnType;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getParams() {
|
return params;
|
}
|
|
public void setParams(String params) {
|
this.params = params;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getExceptions() {
|
return exceptions;
|
}
|
|
public void setExceptions(String exceptions) {
|
this.exceptions = exceptions;
|
}
|
}
|