| 1234567891011121314151617181920 |
- package com.kym.service.impl;
- import com.github.yulichang.base.MPJBaseServiceImpl;
- import com.kym.entity.Contact;
- import com.kym.mapper.ContactMapper;
- import com.kym.service.ContactService;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author skyline
- * @since 2023-08-15
- */
- @Service
- public class ContactServiceImpl extends MPJBaseServiceImpl<ContactMapper, Contact> implements ContactService {
- }
|