935090232@qq.com
2021-03-19 81a3369395a7cccceb7cd36f5238cc6fe2aa88e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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);
    
}