cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.ksource.web.facade.wbx.ydxj;
 
import java.util.Map;
 
import cn.ksource.beans.CI_HEALTH_ITEM;
import cn.ksource.core.page.PageInfo;
 
public interface YdxjItemFacade {
 
    PageInfo jkjcxListData(PageInfo pageInfo, Map<String, String> params);
 
    int jkjcxListCount(Map<String, String> params);
 
    CI_HEALTH_ITEM getHealthItem(String id);
 
    void saveItem(CI_HEALTH_ITEM item);
 
    void updateItem(String id, String state);
 
}