zss
2023-11-03 99d9153a8c33ce32b898c7d9098038caa3447206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.chinaztt.mes.outsource.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.outsource.entity.InspectionDeclaration;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Author: Zero
 * @Date: 2022/9/28 15:00
 * @Description:
 */
@Mapper
public interface InspectionDeclarationMapper extends BaseMapper<InspectionDeclaration> {
}