File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
mybatis-spring-boot-samples/mybatis-spring-boot-sample-graalvm-xml/src/main/java/sample/mybatis/graalvm/xml/mapper Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package sample .mybatis .graalvm .xml .mapper ;
17
17
18
- import org .apache .ibatis .annotations .Mapper ;
19
- import org .apache .ibatis .annotations .Param ;
20
-
21
- import sample .mybatis .graalvm .xml .domain .City ;
22
-
23
18
import java .util .HashSet ;
24
19
import java .util .List ;
25
20
import java .util .Map ;
26
21
import java .util .TreeSet ;
27
22
23
+ import org .apache .ibatis .annotations .Mapper ;
24
+ import org .apache .ibatis .annotations .Param ;
25
+
26
+ import sample .mybatis .graalvm .xml .domain .City ;
27
+
28
28
/**
29
29
* @author Eddú Meléndez
30
30
*/
31
31
@ Mapper
32
32
public interface CityMapper {
33
33
34
- City findByState (@ Param ("state" ) String state );
34
+ City findByState (@ Param ("state" ) String state );
35
35
36
- List <City > listByState (@ Param ("state" ) String state );
36
+ List <City > listByState (@ Param ("state" ) String state );
37
37
38
- Map <String , Object > mapByState (@ Param ("state" ) String state );
38
+ Map <String , Object > mapByState (@ Param ("state" ) String state );
39
39
40
- List <Map <String , Object >> listMapByState (@ Param ("state" ) String state );
40
+ List <Map <String , Object >> listMapByState (@ Param ("state" ) String state );
41
41
42
- TreeSet <String > treeSetStateByState (@ Param ("country" ) String country );
42
+ TreeSet <String > treeSetStateByState (@ Param ("country" ) String country );
43
43
44
- HashSet <String > hashSetStateByState (@ Param ("country" ) String country );
44
+ HashSet <String > hashSetStateByState (@ Param ("country" ) String country );
45
45
46
46
}
You can’t perform that action at this time.
0 commit comments