init
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.xq.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.xq.domain.UserStatus;
|
||||
|
||||
/**
|
||||
* 用户状态Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-28
|
||||
*/
|
||||
public interface UserStatusService extends IService<UserStatus> {
|
||||
|
||||
}
|
||||
@@ -46,6 +46,7 @@ public class AccountChangeLogServiceImpl extends ServiceImpl<AccountChangeLogMap
|
||||
@Override
|
||||
public void saveLogNoAdminOfConsumer(User user, AccountChangeCodeEnum accountChangeCodeEnum, BigDecimal price, String traceId, Long tarUserId) {
|
||||
AccountChangeLog accountChangeLog = new AccountChangeLog();
|
||||
|
||||
accountChangeLog.setUserId(user.getId());
|
||||
accountChangeLog.setUsercode(user.getUsercode());
|
||||
accountChangeLog.setTarUserId(tarUserId);
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.xq.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.xq.domain.UserStatus;
|
||||
import com.ruoyi.xq.mapper.UserStatusMapper;
|
||||
import com.ruoyi.xq.service.UserStatusService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 用户状态Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-28
|
||||
*/
|
||||
@Service
|
||||
public class UserStatusServiceImpl extends ServiceImpl<UserStatusMapper,UserStatus> implements UserStatusService {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user