Compare commits
1 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
ecf920628f | 3 years ago |
@ -0,0 +1,16 @@
|
|||||||
|
package com.dao;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import com.po.Auser;
|
||||||
|
|
||||||
|
@Repository("userDao")
|
||||||
|
@Mapper
|
||||||
|
public interface AdminDao {
|
||||||
|
public int register(Auser buser);
|
||||||
|
public List<Auser> login(Auser buser);
|
||||||
|
public int update(Auser buser);
|
||||||
|
}
|
||||||
Loading…
Reference in new issue