All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zengtengpeng.autoCode.bean.BuildJavaMethod Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.zengtengpeng.autoCode.bean;

import java.util.ArrayList;
import java.util.List;

public class BuildJavaMethod {
    /**
     * 注解
     */
    private List annotation;

    /**
     * 返回值类型
     */
    private String returnType;

    /**
     * 方法类型  如: public List queryByRole(SysRole sysRole) 中的 public
     */
    private String methodType="public";

    /**
     * 参数,已文本串的形式书写.一个参数就是一个String List auths, @Param("roleId") Integer roleId
     */
    private List params;

    /**
     * 方法名
     */
    private String methodName;

    /**
     * 具体代码
     */
    private String content;

    private String remark;


    public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark;
    }

    public String getMethodType() {
        return methodType;
    }

    public void setMethodType(String methodType) {
        this.methodType = methodType;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public List getAnnotation() {
        return annotation;
    }

    public void setAnnotation(List annotation) {
        this.annotation = annotation;
    }

    public String getReturnType() {
        return returnType;
    }

    public void setReturnType(String returnType) {
        this.returnType = returnType;
    }

    public List getParams() {
        return params;
    }

    public void setParams(List params) {
        this.params = params;
    }

    public String getMethodName() {
        return methodName;
    }

    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy