WarehouseServiceImpl.java
412 Bytes
package com.huaheng.pc.general.warehouse.service;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.general.warehouse.mapper.WarehouseMapper;
import com.huaheng.pc.general.warehouse.domain.Warehouse;
@Service
public class WarehouseServiceImpl extends ServiceImpl<WarehouseMapper, Warehouse> implements WarehouseService{
}