diff --git a/.gitignore b/.gitignore index 08124a4..5404a5c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,14 +4,14 @@ target/ !**/src/test/**/target/ ### IntelliJ IDEA ### +.idea/libraries/ +.idea/encodings.xml +.idea/misc.xml +.idea/vcs.xml +.idea/workspace.xml .idea/modules.xml .idea/jarRepositories.xml .idea/compiler.xml -.idea/workspace.xml -.idea/encodings.xml -.idea/vcs.xml -.idea/misc.xml -.idea/libraries/ *.iws *.iml *.ipr diff --git a/README.md b/README.md index e8ede82..b645f90 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,21 @@ -# Homework-Ele -网安实训作业,”山寨”饿了么 -# 20230315 +# Homework-entities +*网安实训作业* + +# 20230316 - 初始化项目 -- 上传到GitHub和Gitee +# 20230322 +- 增加实体类 +- 删除.idea文件 # 20230326 -- 增加实体类 \ No newline at end of file +- 完善实体类 +- 我靠,折腾了一晚上,提交了十几次,终于提交时把.idea这个文件给忽略了 + - 方法:在`.gitgnore`文件中添加 + - `.idea/encodings.xml` + - `.idea/misc.xml` + - `.idea/vcs.xml` + - `.idea/workspace.xml` + - 然后在控制台输入`git rm -r --cached .idea` + - 删除`gitee`或`github`上的`.idea`文件 + - `update`一下远端项目 + - `push`代码 +- 我好菜。。。 \ No newline at end of file diff --git a/src/main/java/entities/indentItem.java b/src/main/java/entities/indentItem.java index d8f1dce..023c38f 100644 --- a/src/main/java/entities/indentItem.java +++ b/src/main/java/entities/indentItem.java @@ -10,5 +10,4 @@ public class indentItem { private Float discount;//折扣 private Float finalPrice;//最终价格 private String description;//菜品描述 - } \ No newline at end of file