| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.ZfPetNote; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ZfPetNoteService extends IService<ZfPetNote> { |
| | | |
| | | AjaxResult selectPetNoteList(ZfPetNote zfPetNote, Integer pageNum, Integer pageSize); |
| | | |
| | | List<ZfPetNote> selectByCondition(ZfPetNote zfPetNote); |
| | | |
| | | AjaxResult getAllPetNoteByPetId(Integer pageNum,Integer pageSize,String pid,ZfPetNote zfPetNote); |
| | | |
| | | AjaxResult mySave(ZfPetNote zfPetNote); |
| | | |
| | | List<ZfPetNote> selectByIds(Long[] ids); |
| | | } |