package com.thhy.engineering.modules.biz.company.mapper;
|
|
import com.thhy.engineering.modules.biz.company.entity.ComDepart;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-28 08:55:43
|
*/
|
@Component
|
public interface ComDepartMapper {
|
|
|
ComDepart queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<ComDepart> findList(ComDepart comdepart);
|
|
List<ComDepart> findAll();
|
|
void insert(ComDepart comdepart);
|
|
void update(ComDepart comdepart);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
}
|