修改service名称

This commit is contained in:
2023-11-08 15:59:11 +08:00
parent 968e48ba18
commit 3a66b4b540
3 changed files with 4 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ public class MemberService {
private IMemberInvoiceTitleService memberInvoiceTitleService;
@Autowired
private IMemberWalletInfoService memberWalletInfoService;
private MemberWalletInfoService memberWalletInfoService;
@Autowired
private PileRemoteService pileRemoteService;

View File

@@ -2,7 +2,7 @@ package com.jsowell.pile.service;
import com.jsowell.pile.domain.MemberWalletInfo;
public interface IMemberWalletInfoService {
public interface MemberWalletInfoService {
int deleteByPrimaryKey(Integer id);
int insert(MemberWalletInfo record);

View File

@@ -2,13 +2,13 @@ package com.jsowell.pile.service.impl;
import com.jsowell.pile.domain.MemberWalletInfo;
import com.jsowell.pile.mapper.MemberWalletInfoMapper;
import com.jsowell.pile.service.IMemberWalletInfoService;
import com.jsowell.pile.service.MemberWalletInfoService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
public class MemberWalletInfoServiceImpl implements IMemberWalletInfoService {
public class MemberWalletInfoServiceImpl implements MemberWalletInfoService {
@Resource
private MemberWalletInfoMapper memberWalletInfoMapper;