yangys
2024-05-09 014ac34ff2baf657c3236f41fdbf11c9d7d414b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.qianwen.smartman.modules.cps.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.qianwen.smartman.modules.cps.entity.ProductionCraftProcessRelatedTool;
import com.qianwen.smartman.modules.cps.mapper.ProductionCraftProcessRelatedToolMapper;
import com.qianwen.smartman.modules.cps.service.IProductionCraftProcessRelatedToolService;
import org.springframework.stereotype.Service;
 
@Service
public class ProductionCraftProcessRelatedToolServiceImpl extends ServiceImpl<ProductionCraftProcessRelatedToolMapper, ProductionCraftProcessRelatedTool> implements IProductionCraftProcessRelatedToolService {
    private static final Logger log = LoggerFactory.getLogger(ProductionCraftProcessRelatedToolServiceImpl.class);
}