WarehousePointServiceImpl.java
437 Bytes
package com.huaheng.api.jindie.service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.api.jindie.domain.WarehousePoint;
import com.huaheng.api.jindie.mapper.WarehousePointMapper;
import org.springframework.stereotype.Service;
@Service("WarehousePointService")
public class WarehousePointServiceImpl extends ServiceImpl<WarehousePointMapper, WarehousePoint> implements WarehousePointService {
}