package org.jeecg.modules.lsw.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.lsw.entity.LswMaterialInbound;
|
import org.jeecg.modules.lsw.mapper.LswMaterialInboundMapper;
|
import org.jeecg.modules.lsw.service.ILswMaterialInboundService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: 物料入库单
|
* @Author: jeecg-boot
|
* @Date: 2025-06-30
|
* @Version: V1.0
|
*/
|
@Service
|
public class LswMaterialInboundServiceImpl extends ServiceImpl<LswMaterialInboundMapper, LswMaterialInbound> implements ILswMaterialInboundService {
|
|
}
|