Fixiaobai
2023-11-09 01d08428dd6cd9dc518a9a2ecbcb1f0e82788068
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.chinaztt.mes.production.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.chinaztt.mes.production.entity.ProductOutput;
import com.chinaztt.mes.production.mapper.ProductOutputMapper;
import com.chinaztt.mes.production.service.ProductOutputService;
import org.springframework.stereotype.Service;
 
/**
 * @Description:
 * @Author: shz
 * @Date: 2022/8/12 14:01
 */
@Service
public class ProductOutputServiceImpl extends ServiceImpl<ProductOutputMapper, ProductOutput> implements ProductOutputService {
}