| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.ZfClean; |
| | | import com.ruoyi.domain.ZfClean; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ZfCleanService extends IService<ZfClean> { |
| | | |
| | | AjaxResult selectDataList(ZfClean zfClean, Integer pageNum, Integer pageSize); |
| | | |
| | | List<ZfClean> selectByCondition(ZfClean zfClean); |
| | | |
| | | AjaxResult addData(ZfClean zfClean); |
| | | |
| | | AjaxResult addData2(ZfClean zfClean); |
| | | |
| | | AjaxResult importExcel(MultipartFile file); |
| | | |
| | | } |