1
2
3
4
5
6
7
8
9
10
11
12
| package com.chinaztt.mes.production.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.chinaztt.mes.production.entity.ProductOutput;
|
| /**
| * @Description:
| * @Author: shz
| * @Date: 2022/8/12 14:00
| */
| public interface ProductOutputService extends IService<ProductOutput> {
| }
|
|