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.
21 lines
537 B
21 lines
537 B
package com.itheima.service;
|
|
|
|
import com.itheima.po.PageInfo;
|
|
import com.itheima.po.Visitor;
|
|
import org.springframework.ui.Model;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: dormitorySystem
|
|
* @description: 访客
|
|
* @author: Joyrocky
|
|
* @create: 2019-05-14 12:39
|
|
**/
|
|
public interface VisitorService {
|
|
//分页查询
|
|
public PageInfo<Visitor> findPageInfo(String v_name, Integer v_phone , Integer pageIndex, Integer pageSize);
|
|
public int addVisitor(Visitor visitor); //添加访客信息
|
|
public List<Visitor> getAll();
|
|
}
|