package com.mes.model.service.impl;
|
|
import com.github.yulichang.base.MPJBaseServiceImpl;
|
import com.mes.model.entity.Account;
|
import com.mes.model.mapper.AccountMapper;
|
import com.mes.model.service.AccountService;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 账户表 服务实现类
|
* </p>
|
*
|
* @author yanzhixin
|
* @since 2024-09-03
|
*/
|
@Slf4j
|
@Service
|
public class AccountServiceImpl extends MPJBaseServiceImpl<AccountMapper, Account> implements AccountService {
|
|
|
}
|