package com.matrix.system.oa.dao;
|
|
import com.matrix.core.pojo.PaginationVO;
|
import com.matrix.system.oa.bean.OaFixedAssets;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @description 固定资产
|
* @author
|
* @date 2019-12-13 07:19
|
*/
|
public interface OaFixedAssetsDao{
|
|
public int insert(@Param("item") OaFixedAssets oaFixedAssets);
|
|
public int batchInsert(@Param("list") List<OaFixedAssets> oaFixedAssetsList);
|
|
public int updateByMap(Map<String, Object> modifyMap);
|
|
public int updateByModel(@Param("record") OaFixedAssets oaFixedAssets);
|
|
public int deleteByIds(@Param("list") List<String> list);
|
|
public int deleteById(String id);
|
|
public int deleteByModel(@Param("record") OaFixedAssets oaFixedAssets);
|
|
public List<OaFixedAssets> selectInPage(@Param("record") OaFixedAssets oaFixedAssets, @Param("pageVo") PaginationVO pageVo);
|
|
public List<OaFixedAssets> selectByModel(@Param("record") OaFixedAssets oaFixedAssets);
|
|
public int selectTotalRecord(@Param("record") OaFixedAssets oaFixedAssets);
|
|
public OaFixedAssets selectById(String id);
|
|
public OaFixedAssets selectForUpdate(String id);
|
|
}
|