package com.huaheng.pc.config.locationCapacity.service; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.huaheng.pc.config.locationCapacity.mapper.LocationCapacityMapper; import com.huaheng.pc.config.locationCapacity.domain.LocationCapacity; import com.huaheng.pc.config.locationCapacity.service.LocationCapacityService; @Service public class LocationCapacityServiceImpl extends ServiceImpl<LocationCapacityMapper, LocationCapacity> implements LocationCapacityService{ }