mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
修改service名称
This commit is contained in:
@@ -5,7 +5,7 @@ import com.jsowell.common.constant.CacheConstants;
|
||||
import com.jsowell.common.core.redis.RedisCache;
|
||||
import com.jsowell.common.util.StringUtils;
|
||||
import com.jsowell.pile.domain.PileBasicInfo;
|
||||
import com.jsowell.pile.service.IPileBasicInfoService;
|
||||
import com.jsowell.pile.service.PileBasicInfoService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -26,7 +26,7 @@ public class SnUtils {
|
||||
private RedisCache redisCache;
|
||||
|
||||
@Autowired
|
||||
private IPileBasicInfoService pileBasicInfoService;
|
||||
private PileBasicInfoService pileBasicInfoService;
|
||||
|
||||
private String prefix = "88";
|
||||
|
||||
|
||||
@@ -10,9 +10,9 @@ import com.jsowell.common.core.domain.vo.AuthorizedDeptVO;
|
||||
import com.jsowell.common.util.SecurityUtils;
|
||||
import com.jsowell.pile.domain.PileMerchantInfo;
|
||||
import com.jsowell.pile.domain.PileStationInfo;
|
||||
import com.jsowell.pile.service.IMemberBasicInfoService;
|
||||
import com.jsowell.pile.service.IPileMerchantInfoService;
|
||||
import com.jsowell.pile.service.IPileStationInfoService;
|
||||
import com.jsowell.pile.service.MemberBasicInfoService;
|
||||
import com.jsowell.pile.service.PileMerchantInfoService;
|
||||
import com.jsowell.pile.service.PileStationInfoService;
|
||||
import com.jsowell.pile.vo.base.LoginUserDetailVO;
|
||||
import com.jsowell.pile.vo.base.MerchantInfoVO;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
@@ -32,16 +32,16 @@ import java.util.stream.Collectors;
|
||||
public class UserUtils {
|
||||
|
||||
// 2.注入想引用的对象的静态实例
|
||||
private static IMemberBasicInfoService memberBasicInfoService;
|
||||
private static MemberBasicInfoService memberBasicInfoService;
|
||||
|
||||
private static IPileMerchantInfoService pileMerchantInfoService;
|
||||
private static PileMerchantInfoService pileMerchantInfoService;
|
||||
|
||||
private static IPileStationInfoService pileStationInfoService;
|
||||
private static PileStationInfoService pileStationInfoService;
|
||||
|
||||
// 3.初始化有参构造器
|
||||
@Autowired
|
||||
public UserUtils(IMemberBasicInfoService memberBasicInfoService, IPileMerchantInfoService pileMerchantInfoService,
|
||||
IPileStationInfoService pileStationInfoService) {
|
||||
public UserUtils(MemberBasicInfoService memberBasicInfoService, PileMerchantInfoService pileMerchantInfoService,
|
||||
PileStationInfoService pileStationInfoService) {
|
||||
UserUtils.memberBasicInfoService = memberBasicInfoService;
|
||||
UserUtils.pileMerchantInfoService = pileMerchantInfoService;
|
||||
UserUtils.pileStationInfoService = pileStationInfoService;
|
||||
|
||||
Reference in New Issue
Block a user