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.dto.form.MyNatListFormDTO;
|
|
|
|
import com.epmet.dto.result.MyNatListResultDTO;
|
|
|
|
import com.epmet.dto.result.NatListResultDTO;
|
|
|
|
import com.epmet.entity.IcNatEntity;
|
|
|
|
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 2022-03-25
|
|
|
|
*/
|
|
|
|
@Mapper
|
|
|
|
public interface IcNatDao extends BaseDao<IcNatEntity> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author sun
|
|
|
|
* @Description 核酸检测-按条件查询核酸记录
|
|
|
|
**/
|
|
|
|
List<MyNatListResultDTO> getMyNatList(MyNatListFormDTO formDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author sun
|
|
|
|
* @Description 【核酸】核酸检测信息列表
|
|
|
|
**/
|
|
|
|
List<NatListResultDTO> getNatList(MyNatListFormDTO formDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author sun
|
|
|
|
* @Description 删除/取消同步操作--物理删除业务数据
|
|
|
|
**/
|
|
|
|
int delById(@Param("icNatId") String icNatId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 插入或者更新
|
|
|
|
* @param e
|
|
|
|
*/
|
|
|
|
void insertOrUpdate(IcNatEntity e);
|
|
|
|
}
|