| | |
| | | package com.ycl.service.platform.zf; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.entity.platform.zf.EnforcelawReport; |
| | | import com.ycl.vo.zf.ZfVO; |
| | |
| | | * 违规事项处置管理:包含违法(违建)情况上报、立案、派遣、处置、核查、结案 服务类 |
| | | * </p> |
| | | * |
| | | * @author lyq |
| | | * @author wl |
| | | * @since 2022-09-14 |
| | | */ |
| | | public interface IEnforcelawReportService extends IService<EnforcelawReport> { |
| | |
| | | * @param params |
| | | */ |
| | | void report(ZfVO.ZfReportVO params); |
| | | |
| | | |
| | | Page<EnforcelawReport> selectPageVo(Page<EnforcelawReport> page, String startTime, String endTime, String community, String status, String partiesName, String partiesID); |
| | | } |