forked from rongchao/epmet-cloud-rizhao
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.
17 lines
504 B
17 lines
504 B
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.entity.IcVaccineRelationEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* 疫苗接种记录关系表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-04-06
|
|
*/
|
|
@Mapper
|
|
public interface IcVaccineRelationDao extends BaseDao<IcVaccineRelationEntity> {
|
|
int delRelation(@Param("icNatId") String icNatId, @Param("agencyId") String agencyId);
|
|
}
|