| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.ZfPet; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | public interface ZfPetService extends IService<ZfPet> { |
| | | |
| | | AjaxResult selectPetList(ZfPet zfPet, Integer pageNum, Integer pageSize); |
| | | // AjaxResult selectPetList(ZfPet zfPet, Integer pageNum, Integer pageSize); |
| | | |
| | | AjaxResult selectDataList(ZfPet zfPet, Integer pageNum, Integer pageSize); |
| | | List<ZfPet> selectByCondition(ZfPet zfPet); |
| | | List<ZfPet> selectByIds(Long[] ids); |
| | | AjaxResult mySave(ZfPet zfPet); |
| | | // AjaxResult mySave(ZfPet zfPet); |
| | | |
| | | AjaxResult importExcel(MultipartFile file); |
| | | |
| | | AjaxResult addData(ZfPet zfPet); |
| | | |
| | | AjaxResult updateData(ZfPet zfPet); |
| | | |
| | | AjaxResult deleteData(Long[] ids); |
| | | |
| | | |
| | | } |