File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/org/mybatis/dynamic/sql/select/function Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2022 the original author or authors.
2
+ * Copyright 2016-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
15
15
*/
16
16
package org .mybatis .dynamic .sql .select .function ;
17
17
18
- import org .mybatis .dynamic .sql .BasicColumn ;
19
- import org .mybatis .dynamic .sql .BindableColumn ;
20
- import org .mybatis .dynamic .sql .render .TableAliasCalculator ;
21
-
22
18
import java .util .ArrayList ;
23
19
import java .util .Arrays ;
24
20
import java .util .List ;
25
21
import java .util .stream .Collectors ;
26
22
23
+ import org .mybatis .dynamic .sql .BasicColumn ;
24
+ import org .mybatis .dynamic .sql .BindableColumn ;
25
+ import org .mybatis .dynamic .sql .render .TableAliasCalculator ;
26
+
27
27
public class Concat <T > extends AbstractUniTypeFunction <T , Concat <T >> {
28
28
private final List <BasicColumn > allColumns = new ArrayList <>();
29
29
You can’t perform that action at this time.
0 commit comments