|
- package com.simple.service;
-
- import java.util.*;
- import com.github.pagehelper.PageInfo;
- import com.simple.domain.po.WxCarCmdLogs;
-
- public interface WxCarCmdLogsService {
-
- /**
- * 根据实体查询分页列表
- *
- * @param record
- * @param pageIndex
- * @param pageSize
- * @return
- */
- PageInfo<WxCarCmdLogs> listAsPage(WxCarCmdLogs record, Integer pageIndex, Integer pageSize);
-
- /**
- * 根据Id获得实体
- *
- * @param id
- * @return
- */
- WxCarCmdLogs getById(Long id);
-
- /**
- * 保存或更新实体
- *
- * @param record
- */
- void saveOrUpdate(WxCarCmdLogs record);
-
- /**
- * 根据Id删除实体
- *
- * @param id
- */
- void deleteById(Long id);
-
-
-
-
-
-
-
-
- }
|