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.
|
|
|
package com.epmet.dao;
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
|
|
import com.epmet.entity.IcNatRelationEntity;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 核酸记录关系表
|
|
|
|
*
|
|
|
|
* @author generator generator@elink-cn.com
|
|
|
|
* @since v1.0.0 2022-03-31
|
|
|
|
*/
|
|
|
|
@Mapper
|
|
|
|
public interface IcNatRelationDao extends BaseDao<IcNatRelationEntity> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author sun
|
|
|
|
* @Description 关系数据删除--物理删除
|
|
|
|
**/
|
|
|
|
int delRelation(@Param("icNatId") String icNatId, @Param("agencyId") String agencyId);
|
|
|
|
|
|
|
|
void deleteBeforeRetentionDays(Date criticleTime);
|
|
|
|
}
|