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.
19 lines
442 B
19 lines
442 B
package com.zzy.dao;
|
|
|
|
import com.zzy.domain.Accountzzy;
|
|
|
|
import java.util.List;
|
|
|
|
public interface AccountzzyDao {
|
|
//查询所有用户数据
|
|
List<Accountzzy> findAll();
|
|
//根据主键查询
|
|
Accountzzy findById(String userid);
|
|
//创建用户
|
|
int create(Accountzzy accountzzy);
|
|
//修改用户
|
|
int modify(Accountzzy accountzzy);
|
|
//删除用户信息
|
|
int remove(Accountzzy accountzzy);
|
|
}
|