package com.thhy.materials.modules.biz.embedment.mapper;
|
|
import com.thhy.materials.modules.biz.embedment.dto.EmbedmentRecordDto;
|
import com.thhy.materials.modules.biz.embedment.entity.SysEmbedmentRecordEntity;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-09-22 16:02:20
|
* 预埋件出入库mapper
|
*/
|
@Mapper
|
public interface SysEmbedmentRecordMapper {
|
|
void insert(SysEmbedmentRecordEntity sysEmbedmentRecordEntity);
|
|
void embedmentRecordDel(String id);
|
|
void update(SysEmbedmentRecordEntity sysEmbedmentRecordEntity);
|
|
/**
|
* 入库列表
|
* @param embedmentRecordDto
|
* @return
|
*/
|
List<SysEmbedmentRecordEntity> embedmentRecordList(EmbedmentRecordDto embedmentRecordDto);
|
|
/**
|
* 出库列表
|
* @param embedmentRecordDto
|
* @return
|
*/
|
List<SysEmbedmentRecordEntity> embedmentRecordOutList(EmbedmentRecordDto embedmentRecordDto);
|
|
/**
|
* 查询单条
|
* @param id
|
* @return
|
*/
|
SysEmbedmentRecordEntity embedmentRecordInfo(String id);
|
|
}
|