ProductGoodsService.java 787 B

12345678910111213141516171819202122232425262728293031
  1. package jnpf.service;
  2. import jnpf.base.service.SuperService;
  3. import jnpf.entity.ProductGoodsEntity;
  4. import jnpf.model.productgoods.ProductGoodsPagination;
  5. import java.util.List;
  6. /**
  7. *
  8. * 产品商品
  9. * 版本: V3.1.0
  10. * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * 作者: JNPF开发平台组
  12. * 日期: 2021-07-10 15:57:50
  13. */
  14. public interface ProductGoodsService extends SuperService<ProductGoodsEntity> {
  15. List<ProductGoodsEntity> getGoodList(String type);
  16. List<ProductGoodsEntity> getList(ProductGoodsPagination productgoodsPagination);
  17. ProductGoodsEntity getInfo(String id);
  18. void delete(ProductGoodsEntity entity);
  19. void create(ProductGoodsEntity entity);
  20. boolean update( String id, ProductGoodsEntity entity);
  21. }