package com.panzhihua.sangeshenbian.service.impl;
|
|
import com.panzhihua.sangeshenbian.service.IBcRegionService;
|
import com.panzhihua.sangeshenbian.service.IComActService;
|
import com.panzhihua.sangeshenbian.service.IComStreetService;
|
import com.panzhihua.sangeshenbian.service.IComplaintService;
|
import com.panzhihua.sangeshenbian.service.IdentityInformationService;
|
import lombok.RequiredArgsConstructor;
|
import org.springframework.context.annotation.Lazy;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author mitao
|
* @date 2025/5/9
|
*/
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
@Service
|
public class StaticsService {
|
private final IdentityInformationService identityInformationService;
|
private final IComplaintService complaintService;
|
private final IBcRegionService bcRegionService;
|
private final IComStreetService comStreetService;
|
private final IComActService comActService;
|
|
}
|