WarehouseServiceImpl.java
532 Bytes
package com.huaheng.pc.general.warehouse.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.general.warehouse.mapper.WarehouseMapper;
import com.huaheng.pc.general.warehouse.domain.Warehouse;
import com.huaheng.pc.general.company.service.WarehouseService;
@Service
public class WarehouseServiceImpl extends ServiceImpl<WarehouseMapper, Warehouse> implements WarehouseService{
}