| 12345678910111213141516171819202122 |
- package jnpf.service;
- import jnpf.base.Pagination;
- import jnpf.base.service.SuperService;
- import jnpf.entity.ProductEntryEntity;
- import java.util.List;
- /**
- *
- * 销售订单明细
- * 版本: V3.1.0
- * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * 作者: JNPF开发平台组
- * 日期: 2021-07-10 10:40:59
- */
- public interface ProductEntryService extends SuperService<ProductEntryEntity> {
- List<ProductEntryEntity> getProductentryEntityList(String id);
- List<ProductEntryEntity> getProductentryEntityList(Pagination pagination);
- }
|