package com.thhy.engineering.modules.biz.build.mapper;
|
|
import com.thhy.engineering.modules.biz.build.entity.Build;
|
import com.thhy.engineering.modules.biz.room.entity.BuildPull;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-11 17:21:13
|
*/
|
@Component
|
public interface BuildMapper {
|
|
|
Build queryById(Serializable buildId);
|
|
Integer queryVersionById(Serializable buildId);
|
|
List<Build> findList(Build build);
|
|
List<BuildPull> findAll(String companyId);
|
|
void insert(Build build);
|
|
void update(Build build);
|
|
void deletelogic(Serializable buildId);
|
|
void deleteById(Serializable buildId);
|
}
|