Fancy
2024-10-16 e9a28062b899087b341514702efe370b3c6df3d4
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
package com.dy.pmsGlobal.daoOth;
 
import com.dy.pmsGlobal.pojoOth.OthFileManage;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface OthFileManageMapper {
    int deleteByPrimaryKey(@Param("id") Long id, @Param("userId") Long userId);
 
    int insert(OthFileManage record);
 
    int insertSelective(OthFileManage record);
 
    OthFileManage selectByPrimaryKey(@Param("id") Long id, @Param("userId") Long userId);
 
    int updateByPrimaryKeySelective(OthFileManage record);
 
    int updateByPrimaryKey(OthFileManage record);
 
    int deleteByPrimaryKey(Long id);
    /**
     * 逻辑删除
     * @param id primaryKey
     * @return update count
     */
    int deleteLogicById(Long id);
 
    OthFileManage selectByPrimaryKey(Long id);
 
    List<OthFileManage> selectSome(Map<String, Object> params);
 
    Long selectSomeCount(Map<String, Object> params);
}