XiaoRuby
2023-09-04 f1400115f582ae795913e360c0f5a70ea4513544
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.yuanchu.mom.service.impl;
 
import com.yuanchu.mom.pojo.ManufactureReport;
import com.yuanchu.mom.mapper.ManufactureReportMapper;
import com.yuanchu.mom.service.ManufactureReportService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 生产管理-->生产报工 服务实现类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-09-04 10:43:26
 */
@Service
public class ManufactureReportServiceImpl extends ServiceImpl<ManufactureReportMapper, ManufactureReport> implements ManufactureReportService {
 
}