package com.panzhihua.service_community.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.panzhihua.service_community.dao.ComActUserWalletChangeMapper;
|
import com.panzhihua.service_community.model.dos.ComActUserWalletChangeDO;
|
import com.panzhihua.service_community.service.ComActUserWalletChangeService;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @auther lyq
|
* @create 2021-06-25 10:35:34
|
* @describe 用户钱包资产变动记录表服务实现类
|
*/
|
@Slf4j
|
@Service
|
public class ComActUserWalletChangeServiceImpl extends ServiceImpl<ComActUserWalletChangeMapper, ComActUserWalletChangeDO> implements ComActUserWalletChangeService {
|
|
}
|