You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
553 B
Java

package com.nmgs.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.nmgs.entity.AppointmentInfo;
import com.nmgs.entity.IntegrationList;
import com.nmgs.entity.ServiceAreaOperationMeal;
import java.util.Map;
public interface IAppointmentInfoService {
Page<AppointmentInfo> getAppointmentInfoPage(Map<String, Object> params);
Page<IntegrationList> getAppointmentInfoIntegralPage(Map<String, Object> params);
Page<ServiceAreaOperationMeal> getAppointmentInfoMealsPage(Map<String, Object> params);
}