Files
xgy-oa/klp-erp/src/main/java/com/klp/erp/service/IErpSupplierPriceService.java

33 lines
925 B
Java
Raw Normal View History

2025-11-18 16:45:05 +08:00
package com.klp.erp.service;
import com.klp.common.core.domain.PageQuery;
import com.klp.common.core.page.TableDataInfo;
import com.klp.erp.domain.bo.ErpSupplierPriceBo;
import com.klp.erp.domain.bo.MaterialTypeQueryBo;
import com.klp.erp.domain.vo.ErpSupplierPriceVo;
import com.klp.erp.domain.vo.MaterialTypeOptionVo;
import java.util.Collection;
import java.util.List;
/**
* 供应商价格Service接口
*/
public interface IErpSupplierPriceService {
ErpSupplierPriceVo queryById(Long priceId);
TableDataInfo<ErpSupplierPriceVo> queryPageList(ErpSupplierPriceBo bo, PageQuery pageQuery);
List<ErpSupplierPriceVo> queryList(ErpSupplierPriceBo bo);
Boolean insertByBo(ErpSupplierPriceBo bo);
Boolean updateByBo(ErpSupplierPriceBo bo);
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
List<MaterialTypeOptionVo> queryMaterialTypeOptions(MaterialTypeQueryBo bo);
}