остальное

This commit is contained in:
parap 2023-05-22 03:44:55 +04:00
parent 7be5686094
commit 81b67b463d
5 changed files with 25 additions and 3 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
target
.idea
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml

View File

@ -1,3 +0,0 @@
# Karamushko_PIbd-22_DBMS
Проект по СУБД

View File

@ -0,0 +1,12 @@
package org.dbms;
import org.dbms.data.DataGenerator;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DBMSApplication {
public static void main(String[] args) {
SpringApplication.run(DBMSApplication.class, args);
}
}

View File

@ -0,0 +1,7 @@
package org.dbms.exceptions;
public class UserExistsException extends RuntimeException {
public UserExistsException(String login) {
super(String.format("User '%s' already exists", login));
}
}

View File

@ -0,0 +1,5 @@
package org.dbms.searchModels;
public class ParkingSearch {
public Long id = null;
}