feat(REQ-2750) 新增StringListTypeHandler类型解析器

This commit is contained in:
luofu 2024-09-09 13:39:31 +08:00
parent ecdbd05f7f
commit d302c7f1a4

View File

@ -0,0 +1,10 @@
package cn.axzo.framework.data.mybatisplus.type;
/**
* @description MybatisPlus string列表类型解析器
* @author luofu
* @version 1.0
* @date 2024/9/9
*/
public class StringListTypeHandler extends BaseListTypeHandler<String>{
}