You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
404 B
20 lines
404 B
3 weeks ago
|
package com.zilber.boot.intelligencesite.mapper;
|
||
|
|
||
|
import com.zilber.boot.intelligencesite.entity.IManpower;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 人力信息表 Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author lsc
|
||
|
* @since 2025-05-06
|
||
|
*/
|
||
|
public interface IManpowerMapper extends BaseMapper<IManpower> {
|
||
|
|
||
|
List<IManpower> queryList(IManpower iManpower);
|
||
|
}
|