| | |
| | | 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; |
| | | import org.jeecg.modules.base.entity.Unit; |
| | | import java.util.List; |
| | | |
| | | public interface SupplierMapper extends BaseMapper<Supplier> { |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.base.entity.Supplier; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | /** |
| | | * 通过供应商名称查询供应商信息 |
| | | * @param name |
| | | * @return |
| | | * @Description: 供应商管理 |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-06-24 |
| | | * @Version: V1.0 |
| | | */ |
| | | public Supplier getByName(@Param("name") String name); |
| | | public interface SupplierMapper extends BaseMapper<Supplier> { |
| | | |
| | | } |