chenrui
2025-04-03 3d6da0d6465fa63cf8b214bf7371eab4949f5488
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.basic.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.basic.mapper.ProductPartLogMapper;
import com.ruoyi.basic.pojo.ProductPartLog;
import com.ruoyi.basic.service.ProductPartLogService;
import org.springframework.stereotype.Service;
 
/**
 * 产品零件号日志表(ProductPartLog)表服务实现类
 *
 * @author makejava
 * @since 2025-03-19 13:47:10
 */
@Service("productPartLogService")
public class ProductPartLogServiceImpl extends ServiceImpl<ProductPartLogMapper, ProductPartLog> implements ProductPartLogService {
 
}