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

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

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

import java.util.List;

/**
 * 构建java字段
 */
public class BuildJavaField {

    /**
     * 注解
     */
    private List annotation;

    /**
     * 返回值类型
     */
    private String returnType;
    /**
     * 字段类型类型  如 private String fileType; 中的 private 或者 private static String fileType; 中的 private static
     */
    private String filedType;

    /**
     * 字段名
     */
    private String filedName;

    /**
     * 初始化字段  private List annotation=new ArrayList<>(); 中的 new ArrayList<>()
     */
    private String init;

    private String remark;

    public String getRemark() {
        return remark;
    }

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

    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 String getFiledType() {
        return filedType;
    }

    public void setFiledType(String filedType) {
        this.filedType = filedType;
    }

    public String getFiledName() {
        return filedName;
    }

    public void setFiledName(String filedName) {
        this.filedName = filedName;
    }

    public String getInit() {
        return init;
    }

    public void setInit(String init) {
        this.init = init;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy