package com.thhy.staff.modules.biz.position.mapper;
|
|
import com.thhy.staff.modules.biz.position.entity.Position;
|
import javafx.geometry.Pos;
|
import org.springframework.stereotype.Component;
|
import java.io.Serializable;
|
import java.util.HashMap;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-03-31 10:41:42
|
*/
|
@Component
|
public interface PositionMapper {
|
|
|
Position queryById(Serializable posId);
|
|
Integer queryVersionById(Serializable posId);
|
|
List<Position> findList(Position position);
|
|
List<Position> findAll();
|
|
List<HashMap<String,Object>> pulldown();
|
|
List<HashMap<String,Object>> pulldownByCompany(Position position);
|
|
void insert(Position position);
|
|
void update(Position position);
|
|
void deletelogic(String posId);
|
|
void deleteById(Serializable posId);
|
|
Integer countByPostionUser(String posId);
|
}
|