package com.thhy.engineering.modules.biz.reciver.mapper;
|
|
import com.thhy.engineering.modules.biz.reciver.entity.Reciver;
|
import com.thhy.engineering.modules.biz.reciver.entity.ReciverListVo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-11 16:21:40
|
*/
|
@Component
|
public interface ReciverMapper {
|
|
|
Reciver queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<ReciverListVo> findList(Reciver reciver);
|
|
List<Reciver> findAll();
|
|
void insert(Reciver reciver);
|
|
void update(Reciver reciver);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
List<Reciver> reciverInfo(String companyId);
|
}
|