1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.java110.job.dao;
|
| import com.java110.dto.msg.ReportMainPo;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 签报单主表DAO
| */
| @Mapper
| public interface IReportMainServiceDao {
|
| /**
| * 保存签报单主表数据
| * @param reportMainPo 签报单主表实体
| * @return 影响行数
| */
| int saveReportMain(ReportMainPo reportMainPo);
| }
|
|