blob: 5c01a5892ed565b07c96224199cb5c08d4958dcd [file] [log] [blame]
/**
* 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.
*/
package com.manager.pulsar.dao;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.manager.pulsar.entity.TenantsRepository;
import com.manager.pulsar.entity.TenantsEntity;
import com.manager.pulsar.mapper.TenantsMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import java.util.Optional;
@Repository
public class MyBatisTenantsRepository implements TenantsRepository {
private final TenantsMapper tenantsMapper;
@Autowired
public MyBatisTenantsRepository(TenantsMapper tenantsMapper) { this.tenantsMapper = tenantsMapper; }
@Override
public Optional<TenantsEntity> findById(int tenantId) {
return Optional.ofNullable(tenantsMapper.findById(tenantId));
}
@Override
public Optional<TenantsEntity> findByName(String tenant) {
return Optional.ofNullable(tenantsMapper.findByName(tenant));
}
@Override
public Page<TenantsEntity> getTenantsList(Integer pageNum, Integer pageSize) {
PageHelper.startPage(pageNum, pageSize);
Page<TenantsEntity> tenantsEntities = tenantsMapper.getTenantsList();
return tenantsEntities;
}
@Override
public int save(TenantsEntity tenantsEntity) {
tenantsMapper.insert(tenantsEntity);
return tenantsEntity.getTenantId();
}
@Override
public void remove(Integer tenantId) {
tenantsMapper.delete(tenantId);
}
@Override
public void removeByTenant(String tenant) {
tenantsMapper.deleteByTenant(tenant);
}
@Override
public void updateByTenant(String tenant) {
tenantsMapper.updateByTenant(tenant);
}
}