From 595b7935a30e84fba1bc3561d05f9d19d3e32e1f Mon Sep 17 00:00:00 2001 From: Administrator <1101184511@qq.com> Date: 星期三, 23 四月 2025 00:45:48 +0800 Subject: [PATCH] 后台管理页面完成 --- src/main/java/com/taoke/autopay/service/impl/WxUserSettingServiceImpl.java | 18 +++++++----------- 1 files changed, 7 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/taoke/autopay/service/impl/WxUserSettingServiceImpl.java b/src/main/java/com/taoke/autopay/service/impl/WxUserSettingServiceImpl.java index a79bd74..e1311cc 100644 --- a/src/main/java/com/taoke/autopay/service/impl/WxUserSettingServiceImpl.java +++ b/src/main/java/com/taoke/autopay/service/impl/WxUserSettingServiceImpl.java @@ -1,25 +1,21 @@ package com.taoke.autopay.service.impl; -import com.taoke.autopay.dao.WxUserSettingsMapper; +import javax.annotation.Resource; + import com.taoke.autopay.entity.SystemConfigKeyEnum; -import com.taoke.autopay.entity.WxUserSettings; -import com.taoke.autopay.service.SystemConfigService; -import com.taoke.autopay.service.WxUserSettingService; import com.taoke.autopay.utils.StringUtil; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; -import javax.annotation.Resource; +import com.taoke.autopay.dao.WxUserSettingsMapper; +import com.taoke.autopay.entity.WxUserSettings; +import com.taoke.autopay.service.SystemConfigService; +import com.taoke.autopay.service.WxUserSettingService; + import java.util.ArrayList; import java.util.Date; import java.util.List; -/** - * @author hxh - * @title: WxUserSettingServiceImpl - * @description: TODO - * @date 2024/6/28 19:10 - */ @Service public class WxUserSettingServiceImpl implements WxUserSettingService { -- Gitblit v1.8.0