Compare commits
No commits in common. '61e746128be481e76e136f3dadcddfb87a21b01f' and '5ed06a83c0d259fc9daafcfe82d7789e4bcf5734' have entirely different histories.
61e746128b
...
5ed06a83c0
@ -1,3 +0,0 @@
|
|||||||
你好
|
|
||||||
测试一下100
|
|
||||||
再次测试100
|
|
@ -0,0 +1,5 @@
|
|||||||
|
package com.msb.dao;
|
||||||
|
|
||||||
|
public interface EmpDao {
|
||||||
|
int addEmp();
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.msb.dao.impl;
|
||||||
|
|
||||||
|
import com.msb.dao.EmpDao;
|
||||||
|
|
||||||
|
public class EmpDaoImpl implements EmpDao {
|
||||||
|
@Override
|
||||||
|
public int addEmp() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue