5 changed files with 35 additions and 8 deletions
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
package co.depsystem.app.model.server.service2.service; |
||||
|
||||
public interface WorkServer { |
||||
void findAllWorkType(); |
||||
|
||||
void updateWorkType(); |
||||
|
||||
void addWorkType(); |
||||
} |
||||
@ -1,4 +1,22 @@
@@ -1,4 +1,22 @@
|
||||
package co.depsystem.app.model.server.service2.service.impl; |
||||
|
||||
public class workImpl { |
||||
import co.depsystem.app.model.server.service2.service.WorkServer; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Service |
||||
public class workImpl implements WorkServer{ |
||||
@Override |
||||
public void findAllWorkType() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void updateWorkType() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void addWorkType() { |
||||
|
||||
} |
||||
} |
||||
|
||||
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
package co.depsystem.app.model.server.service2.service; |
||||
|
||||
public interface workServer { |
||||
|
||||
} |
||||
Loading…
Reference in new issue