yfzhang 9 months ago
parent
commit
0ce51079e2

+ 1 - 1
sky-common/pom.xml

@@ -3,7 +3,7 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <parent>
-        <artifactId>zhihuitian</artifactId>
+        <artifactId>sky-take-out</artifactId>
         <groupId>com.sky</groupId>
         <version>1.0-SNAPSHOT</version>
     </parent>

+ 1 - 1
sky-pojo/pom.xml

@@ -3,7 +3,7 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <parent>
-        <artifactId>zhihuitian</artifactId>
+        <artifactId>sky-take-out</artifactId>
         <groupId>com.sky</groupId>
         <version>1.0-SNAPSHOT</version>
     </parent>

+ 1 - 1
sky-server/pom.xml

@@ -3,7 +3,7 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <parent>
-        <artifactId>zhihuitian</artifactId>
+        <artifactId>sky-take-out</artifactId>
         <groupId>com.sky</groupId>
         <version>1.0-SNAPSHOT</version>
     </parent>

+ 2 - 0
sky-server/src/main/java/com/sky/mapper/EmployeeMapper.java

@@ -32,4 +32,6 @@ public interface EmployeeMapper {
 
    @Select("SELECT * FROM t_landimg where author = (SELECT user FROM t_expert WHERE phone = #{phone} )")
     List<landimg> getLandimgByPhone(String phone);
+
+
 }

+ 2 - 0
sky-server/src/main/java/com/sky/service/EmployeeService.java

@@ -25,4 +25,6 @@ public interface EmployeeService {
      * 根据手机号查询出该专家的已经填报的所有信息
      */
     List<landimg> getLandimgByPhone(String phone);
+
+
 }