| 1234567891011121314151617181920 |
- package com.fdkankan.auth.service.impl;
- import com.fdkankan.auth.entity.Account;
- import com.fdkankan.auth.mapper.IAccountMapper;
- import com.fdkankan.auth.service.IAccountService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author
- * @since 2022-04-02
- */
- @Service
- public class AccountServiceImpl extends ServiceImpl<IAccountMapper, Account> implements IAccountService {
- }
|