| 1234567891011121314151617181920 |
- package jnpf.service.impl;
- import jnpf.base.service.SuperServiceImpl;
- import jnpf.entity.OrderEntryEntity;
- import jnpf.mapper.OrderEntryMapper;
- import jnpf.service.OrderEntryService;
- import org.springframework.stereotype.Service;
- /**
- * 订单明细
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2019年9月26日 上午9:18
- */
- @Service
- public class OrderEntryServiceImpl extends SuperServiceImpl<OrderEntryMapper, OrderEntryEntity> implements OrderEntryService {
- }
|