mirror of
https://gitee.com/dromara/MaxKey.git
synced 2026-05-16 05:20:42 +08:00
v 2.3.0 GA
This commit is contained in:
@@ -44,6 +44,9 @@ public class ExcelImport extends JpaBaseDomain {
|
||||
|
||||
@JsonIgnore
|
||||
protected MultipartFile excelFile;
|
||||
|
||||
|
||||
String updateExist;
|
||||
|
||||
public ExcelImport() {
|
||||
super();
|
||||
@@ -57,6 +60,14 @@ public class ExcelImport extends JpaBaseDomain {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUpdateExist() {
|
||||
return updateExist;
|
||||
}
|
||||
|
||||
public void setUpdateExist(String updateExist) {
|
||||
this.updateExist = updateExist;
|
||||
}
|
||||
|
||||
public MultipartFile getExcelFile() {
|
||||
return excelFile;
|
||||
}
|
||||
|
||||
@@ -80,6 +80,8 @@ public class Organizations extends JpaBaseDomain implements Serializable {
|
||||
private String sortIndex;
|
||||
@Column
|
||||
private String description;
|
||||
|
||||
private String status;
|
||||
|
||||
public Organizations() {
|
||||
// TODO Auto-generated constructor stub
|
||||
@@ -286,6 +288,16 @@ public class Organizations extends JpaBaseDomain implements Serializable {
|
||||
public void setSortIndex(String sortIndex) {
|
||||
this.sortIndex = sortIndex;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
||||
Reference in New Issue
Block a user