【7.6.0】【dict】删除没用的类

pull/57/head
fengshuonan 2023-06-27 18:04:18 +08:00
parent 45e9bf7b18
commit d03406ffa7
2 changed files with 0 additions and 57 deletions

View File

@ -1,51 +0,0 @@
/*
* Copyright [2020-2030] [https://www.stylefeng.cn]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* GunsAPACHE LICENSE 2.0使
*
* 1.LICENSE
* 2.Guns
* 3.
* 4. https://gitee.com/stylefeng/guns
* 5. https://gitee.com/stylefeng/guns
* 6.
*/
package cn.stylefeng.roses.kernel.dict.api.pojo.dict.request;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* ids
*
* @author fengshuonan
* @since 2020/12/11 18:12
*/
@Data
public class ParentIdsUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
private String oldParentIds;
private String newParentIds;
private Date updateTime;
private Long updateUser;
}

View File

@ -24,14 +24,8 @@
*/
package cn.stylefeng.roses.kernel.dict.modular.mapper;
import cn.stylefeng.roses.kernel.dict.api.pojo.dict.request.ParentIdsUpdateRequest;
import cn.stylefeng.roses.kernel.dict.modular.entity.SysDict;
import cn.stylefeng.roses.kernel.dict.modular.pojo.request.DictRequest;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
*