package com.ruoyi.system.service;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.system.domain.Agreement;
|
import com.ruoyi.system.domain.Withdrawal;
|
import com.ruoyi.system.mapper.AgreementMapper;
|
import com.ruoyi.system.mapper.WithdrawMapper;
|
import com.ruoyi.system.pojo.dto.AddAgreementDTO;
|
import org.springframework.beans.BeanUtils;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
@Service
|
public class WithdrawServiceImpl extends ServiceImpl<WithdrawMapper, Withdrawal> implements WithdrawService {
|
|
|
}
|