xiang
2023-09-14 66e4211cbfa154a87390b25c93b32d722e0d690c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.service_equipment.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.panzhihua.service_equipment.model.dos.UnionReport;
import org.apache.ibatis.annotations.Mapper;
/**
 * <p>
 * 户外劳工站上报表 Mapper 接口
 * </p>
 *
 * @author fengjin
 * @since 2023-08-24
 */
@Mapper
public interface UnionReportMapper extends BaseMapper<UnionReport> {
 
}