ICSShipmentDetailServiceImpl.java 513 Bytes
package com.huaheng.pc.u8.service;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.u8.domain.ICSShipmentDetail;
import com.huaheng.pc.u8.mapper.ICSShipmentDetailMapper;
import org.springframework.stereotype.Service;

/**
 * 出库下发或回传单子 服务层实现
 *
 * @author huaheng
 * @date 2018-12-17
 */
@Service
public class ICSShipmentDetailServiceImpl extends ServiceImpl<ICSShipmentDetailMapper, ICSShipmentDetail> implements ICSShipmentDetailService {

}