ZhghApplyMedService.java 626 Bytes
Newer Older
Zhou Yang's avatar
Zhou Yang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
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();
}