mirror of
				https://github.com/continew-org/continew-starter.git
				synced 2025-10-31 10:57:15 +08:00 
			
		
		
		
	fix: 修复遗漏的 validate 导入替换
This commit is contained in:
		| @@ -19,7 +19,10 @@ package top.continew.starter.data.mp.autoconfigure; | |||||||
| import cn.hutool.extra.spring.SpringUtil; | import cn.hutool.extra.spring.SpringUtil; | ||||||
| import com.baomidou.mybatisplus.autoconfigure.MybatisPlusPropertiesCustomizer; | import com.baomidou.mybatisplus.autoconfigure.MybatisPlusPropertiesCustomizer; | ||||||
| import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; | import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; | ||||||
| import com.baomidou.mybatisplus.extension.plugins.inner.*; | import com.baomidou.mybatisplus.extension.plugins.inner.BlockAttackInnerInterceptor; | ||||||
|  | import com.baomidou.mybatisplus.extension.plugins.inner.InnerInterceptor; | ||||||
|  | import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor; | ||||||
|  | import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; | ||||||
| import jakarta.annotation.PostConstruct; | import jakarta.annotation.PostConstruct; | ||||||
| import org.mybatis.spring.annotation.MapperScan; | import org.mybatis.spring.annotation.MapperScan; | ||||||
| import org.slf4j.Logger; | import org.slf4j.Logger; | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ | |||||||
| package top.continew.starter.extension.crud.autoconfigure; | package top.continew.starter.extension.crud.autoconfigure; | ||||||
|  |  | ||||||
| import cn.hutool.core.lang.tree.TreeNodeConfig; | import cn.hutool.core.lang.tree.TreeNodeConfig; | ||||||
| import top.continew.starter.core.util.validate.CheckUtils; | import top.continew.starter.core.validation.CheckUtils; | ||||||
| import top.continew.starter.extension.crud.annotation.TreeField; | import top.continew.starter.extension.crud.annotation.TreeField; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|   | |||||||
| @@ -21,7 +21,7 @@ import cn.hutool.core.util.ArrayUtil; | |||||||
| import io.swagger.v3.oas.annotations.media.Schema; | import io.swagger.v3.oas.annotations.media.Schema; | ||||||
| import org.springframework.data.domain.Sort; | import org.springframework.data.domain.Sort; | ||||||
| import top.continew.starter.core.constant.StringConstants; | import top.continew.starter.core.constant.StringConstants; | ||||||
| import top.continew.starter.core.util.validate.ValidationUtils; | import top.continew.starter.core.validation.ValidationUtils; | ||||||
| import top.continew.starter.data.core.util.SqlInjectionUtils; | import top.continew.starter.data.core.util.SqlInjectionUtils; | ||||||
|  |  | ||||||
| import java.io.Serial; | import java.io.Serial; | ||||||
|   | |||||||
| @@ -29,12 +29,11 @@ import cn.hutool.extra.spring.SpringUtil; | |||||||
| import com.mybatisflex.core.paginate.Page; | import com.mybatisflex.core.paginate.Page; | ||||||
| import com.mybatisflex.core.query.QueryWrapper; | import com.mybatisflex.core.query.QueryWrapper; | ||||||
| import jakarta.servlet.http.HttpServletResponse; | import jakarta.servlet.http.HttpServletResponse; | ||||||
| import org.apache.poi.ss.formula.functions.T; |  | ||||||
| import org.springframework.data.domain.Sort; | import org.springframework.data.domain.Sort; | ||||||
| import org.springframework.transaction.annotation.Transactional; | import org.springframework.transaction.annotation.Transactional; | ||||||
| import top.continew.starter.core.constant.StringConstants; | import top.continew.starter.core.constant.StringConstants; | ||||||
| import top.continew.starter.core.util.ReflectUtils; | import top.continew.starter.core.util.ReflectUtils; | ||||||
| import top.continew.starter.core.util.validate.ValidationUtils; | import top.continew.starter.core.validation.ValidationUtils; | ||||||
| import top.continew.starter.data.mf.base.BaseMapper; | import top.continew.starter.data.mf.base.BaseMapper; | ||||||
| import top.continew.starter.data.mf.service.impl.ServiceImpl; | import top.continew.starter.data.mf.service.impl.ServiceImpl; | ||||||
| import top.continew.starter.data.mf.util.QueryWrapperHelper; | import top.continew.starter.data.mf.util.QueryWrapperHelper; | ||||||
|   | |||||||
| @@ -37,8 +37,8 @@ import org.springframework.transaction.annotation.Transactional; | |||||||
| import top.continew.starter.core.constant.StringConstants; | import top.continew.starter.core.constant.StringConstants; | ||||||
| import top.continew.starter.core.util.ClassUtils; | import top.continew.starter.core.util.ClassUtils; | ||||||
| import top.continew.starter.core.util.ReflectUtils; | import top.continew.starter.core.util.ReflectUtils; | ||||||
| import top.continew.starter.core.util.validate.CheckUtils; | import top.continew.starter.core.validation.CheckUtils; | ||||||
| import top.continew.starter.core.util.validate.ValidationUtils; | import top.continew.starter.core.validation.ValidationUtils; | ||||||
| import top.continew.starter.data.mp.base.BaseMapper; | import top.continew.starter.data.mp.base.BaseMapper; | ||||||
| import top.continew.starter.data.mp.service.impl.ServiceImpl; | import top.continew.starter.data.mp.service.impl.ServiceImpl; | ||||||
| import top.continew.starter.data.mp.util.QueryWrapperHelper; | import top.continew.starter.data.mp.util.QueryWrapperHelper; | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ | |||||||
| package top.continew.starter.messaging.mail.core; | package top.continew.starter.messaging.mail.core; | ||||||
|  |  | ||||||
| import cn.hutool.core.map.MapUtil; | import cn.hutool.core.map.MapUtil; | ||||||
| import top.continew.starter.core.util.validate.ValidationUtils; | import top.continew.starter.core.validation.ValidationUtils; | ||||||
|  |  | ||||||
| import java.nio.charset.Charset; | import java.nio.charset.Charset; | ||||||
| import java.nio.charset.StandardCharsets; | import java.nio.charset.StandardCharsets; | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ | |||||||
| package top.continew.starter.messaging.mail.core; | package top.continew.starter.messaging.mail.core; | ||||||
|  |  | ||||||
| import org.springframework.mail.javamail.JavaMailSenderImpl; | import org.springframework.mail.javamail.JavaMailSenderImpl; | ||||||
| import top.continew.starter.core.util.validate.ValidationUtils; | import top.continew.starter.core.validation.ValidationUtils; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * 邮件配置 |  * 邮件配置 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user