Compare commits
No commits in common. "6df503cf41a2c903fd9dcbf56d7f7c187e6f6097" and "28e9a0c4a2bc53272cc97d68f79aa593a528dd7c" have entirely different histories.
6df503cf41
...
28e9a0c4a2
@ -2,7 +2,6 @@ package com.ktg.mes.md.mapper;
|
||||
|
||||
import com.ktg.mes.md.domain.BaseKnife;
|
||||
import com.ktg.mes.md.domain.MdItem;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
@ -13,7 +12,6 @@ import java.util.List;
|
||||
* @author yinjinlu
|
||||
* @date 2024-10-31
|
||||
*/
|
||||
@Mapper
|
||||
public interface BaseKnifeMapper {
|
||||
/**
|
||||
* 查询工具台账
|
||||
|
@ -1,7 +1,6 @@
|
||||
package com.ktg.mes.md.mapper;
|
||||
|
||||
import com.ktg.mes.wm.domain.UcmCtMaterial;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -11,7 +10,6 @@ import java.util.List;
|
||||
* @author yinjinlu
|
||||
* @date 2024-11-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface UcmCtMaterialMapper2 {
|
||||
/**
|
||||
* 查询料箱物料绑定
|
||||
|
@ -12,7 +12,6 @@ import com.ktg.mes.wm.domain.box.BoxItem;
|
||||
import com.ktg.mes.wm.domain.box.RfidCard;
|
||||
import com.ktg.mes.wm.mapper.UcmCtBaseMapper;
|
||||
import com.ktg.mes.wm.service.IUcmCtBaseService;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
@ -29,11 +28,15 @@ import static org.apache.commons.lang3.SystemUtils.getUserName;
|
||||
* @date 2024-10-31
|
||||
*/
|
||||
@Service
|
||||
@RequiredArgsConstructor
|
||||
public class UcmCtBaseServiceImpl implements IUcmCtBaseService {
|
||||
private final UcmCtBaseMapper ucmCtBaseMapper;
|
||||
private final BaseKnifeMapper baseKnifeMapper;
|
||||
private final UcmCtMaterialMapper2 ucmCtMaterialMapper2;
|
||||
@Autowired
|
||||
private UcmCtBaseMapper ucmCtBaseMapper;
|
||||
|
||||
@Autowired
|
||||
private BaseKnifeMapper baseKnifeMapper;
|
||||
|
||||
@Autowired
|
||||
private UcmCtMaterialMapper2 ucmCtMaterialMapper2;
|
||||
|
||||
/**
|
||||
* 查询料箱管理
|
||||
|
Loading…
Reference in New Issue
Block a user