package com.gear.swx.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.gear.swx.mapper.SwxMarketSmartMapper;
|
import com.gear.swx.domain.SwxMarketSmart;
|
import com.gear.swx.service.ISwxMarketSmartService;
|
|
/**
|
* 智能产品管理Service业务层处理
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Service
|
public class SwxMarketSmartServiceImpl extends ServiceImpl<SwxMarketSmartMapper, SwxMarketSmart> implements ISwxMarketSmartService {
|
@Autowired
|
private SwxMarketSmartMapper swxMarketSmartMapper;
|
}
|