init
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.AccountBusiness;
|
||||
|
||||
/**
|
||||
* 账户业务Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-22
|
||||
*/
|
||||
public interface AccountBusinessService extends IService<AccountBusiness> {
|
||||
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
package com.ruoyi.cai.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.cai.domain.AccountBusiness;
|
||||
import com.ruoyi.cai.mapper.AccountBusinessMapper;
|
||||
import com.ruoyi.cai.service.AccountBusinessService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 账户业务Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-22
|
||||
*/
|
||||
@Service
|
||||
public class AccountBusinessServiceImpl extends ServiceImpl<AccountBusinessMapper, AccountBusiness> implements AccountBusinessService {
|
||||
}
|
||||
@@ -32,10 +32,11 @@ public class AccountChangeLogServiceImpl extends ServiceImpl<AccountChangeLogMap
|
||||
log.setTraceId(traceId);
|
||||
log.setAccountType(rechargeTypeEnum.getCode());
|
||||
log.setCateId(accountChangeEnum.getCode());
|
||||
log.setCateName(accountChangeEnum.getName());
|
||||
log.setCateAppName(accountChangeEnum.getAppName());
|
||||
log.setCateAdminName(accountChangeEnum.getAdminName());
|
||||
log.setTraceLinkType(accountChangeEnum.getTraceIdLink());
|
||||
log.setRemark(accountChangeEnum.getDesc());
|
||||
log.setChangeValue(price);
|
||||
// log.setRemark();
|
||||
log.setIsAdmin(admin);
|
||||
this.save(log);
|
||||
return log;
|
||||
|
||||
Reference in New Issue
Block a user