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 ;
22
33import lombok .Getter ;
44import 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 ;
22
3- import com .codingapi .springboot .example .insfrastructure .entity .DemoEntity ;
3+ import com .codingapi .springboot .example .infrastructure .entity .DemoEntity ;
44import org .springframework .data .jpa .repository .JpaRepository ;
55
66public 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 ;
22
3- import com .codingapi .springboot .example .insfrastructure .entity .DemoEntity ;
3+ import com .codingapi .springboot .example .infrastructure .entity .DemoEntity ;
44import com .codingapi .springboot .fast .annotation .FastController ;
55import com .codingapi .springboot .fast .annotation .FastMapping ;
66import 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 ;
22
33import com .codingapi .springboot .example .domain .entity .Demo ;
44import 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 ;
77import lombok .AllArgsConstructor ;
88import org .springframework .stereotype .Repository ;
99
You can’t perform that action at this time.
0 commit comments