Skip to content

Commit 901fed1

Browse files
committed
fix name
1 parent 5c5c7ff commit 901fed1

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

springboot-example/api/test.sh

-13
This file was deleted.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codingapi.springboot.example.insfrastructure.entity;
1+
package com.codingapi.springboot.example.infrastructure.entity;
22

33
import lombok.Getter;
44
import lombok.Setter;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.codingapi.springboot.example.insfrastructure.jap.repository;
1+
package com.codingapi.springboot.example.infrastructure.jap.repository;
22

3-
import com.codingapi.springboot.example.insfrastructure.entity.DemoEntity;
3+
import com.codingapi.springboot.example.infrastructure.entity.DemoEntity;
44
import org.springframework.data.jpa.repository.JpaRepository;
55

66
public interface DemoEntityRepository extends JpaRepository<DemoEntity,Integer> {
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.codingapi.springboot.example.insfrastructure.query;
1+
package com.codingapi.springboot.example.infrastructure.query;
22

3-
import com.codingapi.springboot.example.insfrastructure.entity.DemoEntity;
3+
import com.codingapi.springboot.example.infrastructure.entity.DemoEntity;
44
import com.codingapi.springboot.fast.annotation.FastController;
55
import com.codingapi.springboot.fast.annotation.FastMapping;
66
import org.springframework.web.bind.annotation.RequestMethod;
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package com.codingapi.springboot.example.insfrastructure.repository.impl;
1+
package com.codingapi.springboot.example.infrastructure.repository.impl;
22

33
import com.codingapi.springboot.example.domain.entity.Demo;
44
import com.codingapi.springboot.example.domain.repository.DemoRepository;
5-
import com.codingapi.springboot.example.insfrastructure.entity.DemoEntity;
6-
import com.codingapi.springboot.example.insfrastructure.jap.repository.DemoEntityRepository;
5+
import com.codingapi.springboot.example.infrastructure.entity.DemoEntity;
6+
import com.codingapi.springboot.example.infrastructure.jap.repository.DemoEntityRepository;
77
import lombok.AllArgsConstructor;
88
import org.springframework.stereotype.Repository;
99

0 commit comments

Comments
 (0)