package com.hmit.kernes.service; import com.hmit.kernes.entity.ZhghApplyMedEntity; import java.sql.Date; import java.util.List; import java.util.Map; public interface ZhghApplyMedService { void save(ZhghApplyMedEntity zhghApplyMedEntity); void update(ZhghApplyMedEntity zhghApplyMedEntity); void deleteBatch(Object[] id); ZhghApplyMedEntity queryObject(Object id); List<ZhghApplyMedEntity> queryList(Map<String, Object> map); int queryTotal(Map<String, Object> map); List<ZhghApplyMedEntity> queryByDate(Date medTime); List<Map> getMedIncrease(); }