| | |
| | | package org.jeecg.modules.base.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.base.entity.Supplier; |
| | | import org.jeecg.modules.base.entity.SupplierCategory; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | /** |
| | | * @Description: mom_base_supplier |
| | | * @Description: 供应商管理 |
| | | * @Author: jeecg-boot |
| | | * @Date: 2023-03-10 |
| | | * @Date: 2025-06-24 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface ISupplierService extends IService<Supplier> { |
| | | |
| | | |
| | | public Supplier getByName(String name); |
| | | } |