|
@@ -29,6 +29,7 @@ import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
import lombok.SneakyThrows;
|
|
import lombok.SneakyThrows;
|
|
import lombok.experimental.Accessors;
|
|
import lombok.experimental.Accessors;
|
|
|
|
+import org.springframework.context.annotation.Lazy;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -58,7 +59,7 @@ import static com.xy.utils.PlusBeans.toPageBean;
|
|
* @since 2023-04-14
|
|
* @since 2023-04-14
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
-@AllArgsConstructor
|
|
|
|
|
|
+@AllArgsConstructor(onConstructor_ = @Lazy)
|
|
@Api(tags = "设备计费历史表")
|
|
@Api(tags = "设备计费历史表")
|
|
public class DeviceChargingHistoryServiceImpl extends ServiceImpl<DeviceChargingHistoryMapper, DeviceChargingHistory> implements DeviceChargingHistoryService {
|
|
public class DeviceChargingHistoryServiceImpl extends ServiceImpl<DeviceChargingHistoryMapper, DeviceChargingHistory> implements DeviceChargingHistoryService {
|
|
|
|
|