File tree Expand file tree Collapse file tree 5 files changed +8
-21
lines changed
src/main/java/com/codingapi/springboot/example/infrastructure Expand file tree Collapse file tree 5 files changed +8
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .example .insfrastructure .entity ;
1
+ package com .codingapi .springboot .example .infrastructure .entity ;
2
2
3
3
import lombok .Getter ;
4
4
import lombok .Setter ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .example .insfrastructure .jap .repository ;
1
+ package com .codingapi .springboot .example .infrastructure .jap .repository ;
2
2
3
- import com .codingapi .springboot .example .insfrastructure .entity .DemoEntity ;
3
+ import com .codingapi .springboot .example .infrastructure .entity .DemoEntity ;
4
4
import org .springframework .data .jpa .repository .JpaRepository ;
5
5
6
6
public interface DemoEntityRepository extends JpaRepository <DemoEntity ,Integer > {
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .example .insfrastructure .query ;
1
+ package com .codingapi .springboot .example .infrastructure .query ;
2
2
3
- import com .codingapi .springboot .example .insfrastructure .entity .DemoEntity ;
3
+ import com .codingapi .springboot .example .infrastructure .entity .DemoEntity ;
4
4
import com .codingapi .springboot .fast .annotation .FastController ;
5
5
import com .codingapi .springboot .fast .annotation .FastMapping ;
6
6
import org .springframework .web .bind .annotation .RequestMethod ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .example .insfrastructure .repository .impl ;
1
+ package com .codingapi .springboot .example .infrastructure .repository .impl ;
2
2
3
3
import com .codingapi .springboot .example .domain .entity .Demo ;
4
4
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 ;
7
7
import lombok .AllArgsConstructor ;
8
8
import org .springframework .stereotype .Repository ;
9
9
You can’t perform that action at this time.
0 commit comments