1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.gs.xky.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.gs.xky.entity.MesRohIn;
|
| /**
| * @author 28567
| * @description 针对表【MES_ROH_IN(采购订单表)】的数据库操作Service
| * @createDate 2025-05-26 15:39:01
| */
| public interface MesRohInService extends IService<MesRohIn> {
|
| }
|
|