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

com.lin.entity.common.PathInfo Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.lin.entity.common;

/**
 * 路径信息
 * @author lkmc2
 * @since 1.0.1
 */
public class PathInfo {

    /** 包名 **/
    private String packageName;

    /** 当前文件路径 **/
    private String currentFilePath;

    public PathInfo() {
    }

    public PathInfo(String packageName, String currentFilePath) {
        this.packageName = packageName;
        this.currentFilePath = currentFilePath;
    }

    public String getPackageName() {
        return packageName;
    }

    public void setPackageName(String packageName) {
        this.packageName = packageName;
    }

    public String getCurrentFilePath() {
        return currentFilePath;
    }

    public void setCurrentFilePath(String currentFilePath) {
        this.currentFilePath = currentFilePath;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy