1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.zbooksoft.gdmis.dao;
|
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.zbooksoft.gdmis.data.entity.ProcessingForm;
|
|
| /**
| * @Description 加工单接口
| * @Author zhai
| * @Date 2024/7/31
| **/
| public interface ProcessingFormMapper extends BaseMapper<ProcessingForm> {
| }
|
|