package com.lf.server.entity.ctrl;
|
|
/**
|
* 表映射实体类
|
* @author WWW
|
*/
|
public class TabMapperEntity {
|
public TabMapperEntity() {
|
}
|
|
public TabMapperEntity(String fileName, String type, String tab) {
|
this.fileName = fileName;
|
this.type = type;
|
this.tab = tab;
|
|
}
|
|
public TabMapperEntity(String fileName, String type, String tab, String subPath) {
|
this.fileName = fileName;
|
this.type = type;
|
this.tab = tab;
|
this.subPath = subPath;
|
}
|
|
private String fileName;
|
|
private String type;
|
|
private String tab;
|
|
private String subPath;
|
|
private String entity;
|
|
public String getFileName() {
|
return fileName;
|
}
|
|
public void setFileName(String fileName) {
|
this.fileName = fileName;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getTab() {
|
return tab;
|
}
|
|
public void setTab(String tab) {
|
this.tab = tab;
|
}
|
|
public String getSubPath() {
|
return subPath;
|
}
|
|
public void setSubPath(String subPath) {
|
this.subPath = subPath;
|
}
|
|
public String getEntity() {
|
return entity;
|
}
|
|
public void setEntity(String entity) {
|
this.entity = entity;
|
}
|
}
|