This commit is contained in:
2023-05-18 17:29:02 +08:00
parent 9be00db5e4
commit e41797c750
28 changed files with 413 additions and 105 deletions

View File

@ -52,8 +52,4 @@ public class SysUser extends BaseEntity {
@Schema(description = "帐号状态(1正常 0停用)")
private String status;
@Schema(description = "是否已删除")
private String isDelete;
}

View File

@ -37,8 +37,6 @@ public class SysUserDto implements Serializable {
private String status;
private String isDelete;
private String remark;
/**

View File

@ -30,8 +30,6 @@ public class SysUserParam implements Serializable {
private String status;
private String isDelete;
private String beginTime;
private String endTime;

View File

@ -65,10 +65,9 @@ public interface SysUserApiService {
* 批量删除
*
* @param userIds userIds
* @param isSoftDelete 是否软删除
* @return 结果
*/
int deleteByIds(List<String> userIds, Boolean isSoftDelete);
int deleteByIds(List<String> userIds);
/**
* 用户绑定角色