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

com.hn.doc.xyj.parse.DomainParse Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.doc.xyj.parse;

import lombok.Data;

import java.util.List;

/**
 * 描述: 实体类解析
 *
 * @author fei
 * 2020-01-10 11:49
 */
@Data
public class DomainParse {

    private String className;
    private String javaSrcPath;
    private List fieldList;

    public Field createField(){
        return new Field();
    }

    @Data
    public class Field{
        private String name;
        private String type;
        private String typeClass;
        private String comment;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy