ShipmentPreferenceServiceImpl.java
637 Bytes
package com.huaheng.pc.shipment.shipmentPreference.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.shipment.shipmentPreference.mapper.ShipmentPreferenceMapper;
import com.huaheng.pc.shipment.shipmentPreference.domain.ShipmentPreference;
import com.huaheng.pc.shipment.shipmentPreference.service.ShipmentPreferenceService;
@Service
public class ShipmentPreferenceServiceImpl extends ServiceImpl<ShipmentPreferenceMapper, ShipmentPreference> implements ShipmentPreferenceService{
}