package com.zy.crm.manager.service.impl;
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import com.zy.crm.manager.entity.OrderProductType;
|
import com.zy.crm.manager.mapper.OrderProductTypeMapper;
|
import com.zy.crm.manager.service.OrderProductTypeService;
|
import org.springframework.stereotype.Service;
|
|
@Service("orderProductTypeService")
|
public class OrderProductTypeServiceImpl extends ServiceImpl<OrderProductTypeMapper, OrderProductType> implements OrderProductTypeService {
|
|
}
|