package com.ruoyi.service.impl;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.domain.ZfContact;
|
import com.ruoyi.mapper.ZfContactMapper;
|
import com.ruoyi.service.ZfContactService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
@Service
|
public class ZfContactServiceImpl extends ServiceImpl<ZfContactMapper, ZfContact> implements ZfContactService {
|
|
}
|