| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeIssueReport; |
| | | import com.dy.pipIrrGlobal.voSe.VoIssueReport; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | |
| | | int updateByPrimaryKeySelective(SeIssueReport record); |
| | | |
| | | int updateByPrimaryKey(SeIssueReport record); |
| | | |
| | | /** |
| | | * 根据指定条件获取农户问题上报数量 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | Long getIssueReportsCount(Map<?, ?> params); |
| | | |
| | | /** |
| | | * 根据指定条件获取农户问题上报 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<VoIssueReport> getIssueReports(Map<?, ?> params); |
| | | |
| | | /** |
| | | * 逻辑删除一个农户问题上报 |
| | | * @param issueReportId |
| | | * @return |
| | | */ |
| | | Integer deleteIssueReport(Long issueReportId); |
| | | } |