| | |
| | | package com.jilongda.manage.service; |
| | | |
| | | import com.jilongda.common.basic.PageInfo; |
| | | import com.jilongda.manage.model.TSupplier; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jilongda.manage.query.TSupplierQuery; |
| | | import com.jilongda.manage.vo.TSupplierVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TSupplierService extends IService<TSupplier> { |
| | | |
| | | /** |
| | | * 获取供应商分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TSupplierVO> pageList(TSupplierQuery query); |
| | | |
| | | /** |
| | | * 判断供应商是否存在 |
| | | * @param id |
| | | * @param name |
| | | * @return |
| | | */ |
| | | Boolean isExit(Integer id, String name); |
| | | |
| | | /** |
| | | * 启用禁用供应商 |
| | | * @param id |
| | | * @param status |
| | | * @return |
| | | */ |
| | | Boolean upAndDown(Long id, Integer status); |
| | | } |