审查视图

src/main/java/com/tianbo/warehouse/service/LogService.java 348 字节
朱兆平 authored
1 2
package com.tianbo.warehouse.service;
朱兆平 authored
3
import com.github.pagehelper.PageInfo;
朱兆平 authored
4 5 6 7 8 9
import com.tianbo.warehouse.model.LOG;
import com.tianbo.warehouse.model.LOGWithBLOBs;

public interface LogService {

    int insertSelective(LOGWithBLOBs record);
朱兆平 authored
10
shenhailong authored
11
    PageInfo<LOGWithBLOBs> selectAll(int pageNum, int pageSize, String username, String modelnamecn);
朱兆平 authored
12
}