You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
824 B
24 lines
824 B
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.dto.result.lingshan.LingShanSpecialCrowdStatsByOrgResultDTO;
|
|
import com.epmet.entity.LingshanSpecialCrowdDetailJzhzEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 灵山-特殊人群-精障患者
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2023-04-18
|
|
*/
|
|
@Mapper
|
|
public interface LingshanSpecialCrowdDetailJzhzDao extends BaseDao<LingshanSpecialCrowdDetailJzhzEntity> {
|
|
|
|
void saveBatchManually(@Param("list") List<LingshanSpecialCrowdDetailJzhzEntity> l);
|
|
void deletePhysical(@Param("idCard") String idCard);
|
|
|
|
List<LingShanSpecialCrowdStatsByOrgResultDTO> statsCountsByOrgIds(@Param("orgIdPaths") List<String> orgIdPaths);
|
|
}
|