Lius
2024-07-25 9b015b51b72ba050b4c38a6ba79eb45b7065e67d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.base.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.base.entity.Constructor;
import org.jeecg.modules.base.entity.Supplier;
 
public interface ConstructorMapper extends BaseMapper<Constructor> {
 
    /**
     * 通过制造商名称查询制造商信息
     *
     * @param name
     * @return
     */
    public Constructor getByName(@Param("name") String name);
}