system和auth 初步构建
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package org.xyzh.common.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Date;
|
||||
import java.util.Date;
|
||||
|
||||
|
||||
/**
|
||||
@@ -47,7 +47,7 @@ public class BaseDTO implements Serializable{
|
||||
* @author yslg
|
||||
* @since 2025-09-10
|
||||
*/
|
||||
private Integer deleted;
|
||||
private boolean deleted;
|
||||
|
||||
|
||||
|
||||
@@ -136,11 +136,11 @@ public class BaseDTO implements Serializable{
|
||||
|
||||
/**
|
||||
* @description 获取是否删除
|
||||
* @return Integer 是否删除
|
||||
* @return boolean 是否删除
|
||||
* @author yslg
|
||||
* @since 2025-09-10
|
||||
*/
|
||||
public Integer getDeleted() {
|
||||
public boolean getDeleted() {
|
||||
return deleted;
|
||||
}
|
||||
|
||||
@@ -150,7 +150,7 @@ public class BaseDTO implements Serializable{
|
||||
* @author yslg
|
||||
* @since 2025-09-10
|
||||
*/
|
||||
public void setDeleted(Integer deleted) {
|
||||
public void setDeleted(boolean deleted) {
|
||||
this.deleted = deleted;
|
||||
}
|
||||
|
||||
|
||||
@@ -54,6 +54,54 @@ public class TbSysDept extends BaseDTO{
|
||||
*/
|
||||
private String updater;
|
||||
|
||||
// Getter和Setter方法
|
||||
public String getDeptID() {
|
||||
return deptID;
|
||||
}
|
||||
|
||||
public void setDeptID(String deptID) {
|
||||
this.deptID = deptID;
|
||||
}
|
||||
|
||||
public String getParentID() {
|
||||
return parentID;
|
||||
}
|
||||
|
||||
public void setParentID(String parentID) {
|
||||
this.parentID = parentID;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public String getUpdater() {
|
||||
return updater;
|
||||
}
|
||||
|
||||
public void setUpdater(String updater) {
|
||||
this.updater = updater;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
||||
Reference in New Issue
Block a user