6 changed files with 46 additions and 30 deletions
@ -1,14 +0,0 @@ |
|||
package com.qs.serve.modules.pms.service.impl; |
|||
|
|||
import com.baomidou.mybatisplus.extension.service.IService; |
|||
import com.qs.serve.modules.pms.entity.PmsProductProcess; |
|||
|
|||
/** |
|||
* 产品工序 服务接口 |
|||
* @author YenHex |
|||
* @date 2022-08-05 |
|||
*/ |
|||
public interface PmsProductProcessService extends IService<PmsProductProcess> { |
|||
|
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
package com.qs.serve.modules.pms.service.impl; |
|||
|
|||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|||
import lombok.AllArgsConstructor; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
import com.qs.serve.modules.pms.entity.PmsProductProcess; |
|||
import com.qs.serve.modules.pms.service.PmsProductProcessService; |
|||
import com.qs.serve.modules.pms.mapper.PmsProductProcessMapper; |
|||
|
|||
/** |
|||
* 产品工序 服务实现类 |
|||
* @author YenHex |
|||
* @since 2022-08-05 |
|||
*/ |
|||
@Slf4j |
|||
@Service |
|||
@AllArgsConstructor |
|||
public class PmsProductProcessServiceImpl extends ServiceImpl<PmsProductProcessMapper,PmsProductProcess> implements PmsProductProcessService { |
|||
|
|||
} |
|||
|
@ -1,14 +0,0 @@ |
|||
package com.qs.serve.modules.pms.service.impl; |
|||
|
|||
import com.baomidou.mybatisplus.extension.service.IService; |
|||
import com.qs.serve.modules.pms.entity.PmsProduct; |
|||
|
|||
/** |
|||
* 产品 服务接口 |
|||
* @author YenHex |
|||
* @date 2022-08-05 |
|||
*/ |
|||
public interface PmsProductService extends IService<PmsProduct> { |
|||
|
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
package com.qs.serve.modules.pms.service.impl; |
|||
|
|||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|||
import lombok.AllArgsConstructor; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
import com.qs.serve.modules.pms.entity.PmsProduct; |
|||
import com.qs.serve.modules.pms.service.PmsProductService; |
|||
import com.qs.serve.modules.pms.mapper.PmsProductMapper; |
|||
|
|||
/** |
|||
* 产品 服务实现类 |
|||
* @author YenHex |
|||
* @since 2022-08-05 |
|||
*/ |
|||
@Slf4j |
|||
@Service |
|||
@AllArgsConstructor |
|||
public class PmsProductServiceImpl extends ServiceImpl<PmsProductMapper,PmsProduct> implements PmsProductService { |
|||
|
|||
} |
|||
|
Loading…
Reference in new issue