4 changed files with 57 additions and 11 deletions
@ -0,0 +1,21 @@ |
|||||||
|
/** |
||||||
|
* @author JOJO |
||||||
|
* @class OrderController |
||||||
|
* @date 2022/9/28 |
||||||
|
* @apiNote |
||||||
|
*/ |
||||||
|
|
||||||
|
package com.jd.springboot.depositModel.Controller; |
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
|
||||||
|
@Controller |
||||||
|
public class OrderController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
public void show() { |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,11 @@ |
|||||||
|
package com.jd.springboot.depositModel.Dao; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author adiao |
||||||
|
*/ |
||||||
|
public interface ChangServiceDao { |
||||||
|
/** |
||||||
|
* 定义显示方法 |
||||||
|
*/ |
||||||
|
void show(); |
||||||
|
} |
||||||
@ -0,0 +1,25 @@ |
|||||||
|
/** |
||||||
|
* @author JOJO |
||||||
|
* @class changService |
||||||
|
* @date 2022/9/27 |
||||||
|
* @apiNote |
||||||
|
*/ |
||||||
|
|
||||||
|
package com.jd.springboot.depositModel.Service; |
||||||
|
|
||||||
|
import com.jd.springboot.depositModel.Dao.ChangServiceDao; |
||||||
|
|
||||||
|
/** |
||||||
|
* 定义业务1 |
||||||
|
* |
||||||
|
* @author adiao |
||||||
|
*/ |
||||||
|
public class ChangService implements ChangServiceDao { |
||||||
|
/** |
||||||
|
* 重写 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void show() { |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue