This commit is contained in:
张良(004796)
2024-01-05 14:27:49 +08:00
parent 54801cc546
commit 4bc8850fad
6 changed files with 235 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.cai.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.cai.domain.AccountChangeLog;
/**
* 账户明细Service接口
*
* @author 77
* @date 2024-01-05
*/
public interface AccountChangeLogService extends IService<AccountChangeLog> {
}

View File

@@ -0,0 +1,18 @@
package com.ruoyi.cai.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.cai.domain.AccountChangeLog;
import com.ruoyi.cai.mapper.AccountChangeLogMapper;
import com.ruoyi.cai.service.AccountChangeLogService;
import org.springframework.stereotype.Service;
/**
* 账户明细Service业务层处理
*
* @author 77
* @date 2024-01-05
*/
@Service
public class AccountChangeLogServiceImpl extends ServiceImpl<AccountChangeLogMapper,AccountChangeLog> implements AccountChangeLogService {
}