You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
345 B

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);
}