package com.matrix.system.hive.dao;
|
|
import com.matrix.system.hive.bean.SysProjServices;
|
import org.apache.ibatis.annotations.Param;
|
|
import com.matrix.core.pojo.PaginationVO;
|
|
|
import java.util.Date;
|
import java.util.List;
|
|
|
/**
|
*
|
* @date 2016-07-03 20:57
|
*/
|
|
|
public interface SysProjServicesDao{
|
|
public int insert(SysProjServices sysProjServices);
|
|
public int update(SysProjServices sysProjServices);
|
|
public int deleteByIds(@Param("list") List<Long> list);
|
|
public int deleteById(Long id);
|
|
public List<SysProjServices> selectInPage(@Param("record") SysProjServices sysProjServices, @Param("pageVo") PaginationVO pageVo);
|
|
public List<SysProjServices> selectByModel(@Param("record") SysProjServices sysProjServices);
|
|
public int selectTotalRecord(@Param("record") SysProjServices sysProjServices);
|
|
public SysProjServices selectById(Long id);
|
|
public void updateOrderTime(@Param("createTime") Date createTime, @Param("id") Long id);
|
|
|
}
|