Compare commits
No commits in common. "efc78860bfed9a8bb23821e8415e8598b30dce48" and "ea2c07cbc28866e4a0b74c1ecc56ec7e1ce1b744" have entirely different histories.
efc78860bf
...
ea2c07cbc2
@ -157,12 +157,6 @@
|
|||||||
<version>2.2.9</version>
|
<version>2.2.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.projectlombok</groupId>
|
|
||||||
<artifactId>lombok</artifactId>
|
|
||||||
<scope>annotationProcessor</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -3,7 +3,6 @@ package com.ktg.mes.wm.mapper;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import com.ktg.mes.wm.domain.UcmCtBase;
|
import com.ktg.mes.wm.domain.UcmCtBase;
|
||||||
import com.ktg.mes.wm.domain.UcmCtMaterial;
|
import com.ktg.mes.wm.domain.UcmCtMaterial;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 料箱管理Mapper接口
|
* 料箱管理Mapper接口
|
||||||
@ -11,8 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
|
|||||||
* @author yinjinlu
|
* @author yinjinlu
|
||||||
* @date 2024-10-31
|
* @date 2024-10-31
|
||||||
*/
|
*/
|
||||||
@Mapper
|
public interface UcmCtBaseMapper
|
||||||
public interface UcmCtBaseMapper
|
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询料箱管理
|
* 查询料箱管理
|
||||||
@ -22,14 +20,6 @@ public interface UcmCtBaseMapper
|
|||||||
*/
|
*/
|
||||||
public UcmCtBase selectUcmCtBaseByCtBaseId(String ctBaseId);
|
public UcmCtBase selectUcmCtBaseByCtBaseId(String ctBaseId);
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询料箱管理
|
|
||||||
*
|
|
||||||
* @param code 物料code
|
|
||||||
* @return 料箱管理
|
|
||||||
*/
|
|
||||||
public UcmCtBase selectUcmCtBaseByCode(String code);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询料箱管理列表
|
* 查询料箱管理列表
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,6 @@ package com.ktg.mes.wm.mapper;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import com.ktg.mes.wm.domain.WmsInPlanDetailEntity;
|
import com.ktg.mes.wm.domain.WmsInPlanDetailEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 入库计划明细实体Mapper接口
|
* 入库计划明细实体Mapper接口
|
||||||
@ -10,8 +9,7 @@ import org.apache.ibatis.annotations.Mapper;
|
|||||||
* @author yinjinlu
|
* @author yinjinlu
|
||||||
* @date 2024-11-05
|
* @date 2024-11-05
|
||||||
*/
|
*/
|
||||||
@Mapper
|
public interface WmsInPlanDetailEntityMapper
|
||||||
public interface WmsInPlanDetailEntityMapper
|
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询入库计划明细实体
|
* 查询入库计划明细实体
|
||||||
|
@ -3,7 +3,6 @@ package com.ktg.mes.wm.mapper;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import com.ktg.mes.wm.domain.WmsInPlan;
|
import com.ktg.mes.wm.domain.WmsInPlan;
|
||||||
import com.ktg.mes.wm.domain.WmsInPlanDetails;
|
import com.ktg.mes.wm.domain.WmsInPlanDetails;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 入库计划Mapper接口
|
* 入库计划Mapper接口
|
||||||
@ -11,8 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
|
|||||||
* @author yinjinlu
|
* @author yinjinlu
|
||||||
* @date 2024-10-31
|
* @date 2024-10-31
|
||||||
*/
|
*/
|
||||||
@Mapper
|
public interface WmsInPlanMapper
|
||||||
public interface WmsInPlanMapper
|
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询入库计划
|
* 查询入库计划
|
||||||
|
@ -5,7 +5,6 @@ import java.util.List;
|
|||||||
import com.ktg.common.utils.DateUtils;
|
import com.ktg.common.utils.DateUtils;
|
||||||
import com.ktg.mes.wm.domain.WmsInPlanDetailEntity;
|
import com.ktg.mes.wm.domain.WmsInPlanDetailEntity;
|
||||||
import com.ktg.mes.wm.mapper.WmsInPlanDetailEntityMapper;
|
import com.ktg.mes.wm.mapper.WmsInPlanDetailEntityMapper;
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
@ -25,14 +24,12 @@ import com.ktg.mes.wm.service.IWmsInPlanService;
|
|||||||
* @date 2024-10-31
|
* @date 2024-10-31
|
||||||
*/
|
*/
|
||||||
@Service
|
@Service
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class WmsInPlanServiceImpl implements IWmsInPlanService {
|
public class WmsInPlanServiceImpl implements IWmsInPlanService {
|
||||||
private final WmsInPlanMapper wmsInPlanMapper;
|
@Autowired
|
||||||
private final WmsInPlanDetailEntityMapper wmsInPlanDetailEntityMapper;
|
private WmsInPlanMapper wmsInPlanMapper;
|
||||||
private final UcmCtBaseMapper ucmCtBaseMapper;
|
|
||||||
private final BaseKnifeServiceImpl baseKnifeService;
|
@Autowired
|
||||||
private final IMdItemService mdItemService;
|
private WmsInPlanDetailEntityMapper wmsInPlanDetailEntityMapper;
|
||||||
private final WmStorageAreaServiceImpl wmStorageAreaService;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询入库计划
|
* 查询入库计划
|
||||||
|
Loading…
Reference in New Issue
Block a user