Fancy
2025-01-07 28f6317f7189d5c4a7e64f57dd6c7fc2011f8632
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.dy.pmsGlobal.daoTst;
 
import com.dy.pmsGlobal.pojoTst.TstCommand;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
* @author User
* @description 针对表【tst_command】的数据库操作Mapper
* @createDate 2024-10-16 15:50:25
* @Entity com.dy.pmsGlobal.pojoTst.TstCommand
*/
@Mapper
public interface TstCommandMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(TstCommand record);
 
    int insertSelective(TstCommand record);
 
    int deleteLogicById(Long id);
 
    TstCommand selectByPrimaryKey(Long id);
 
    Long selectByNameId(@Param("id") Long id,@Param("proId") Long proId, @Param("name") String name);
 
    List<TstCommand> selectAll();
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<TstCommand> selectSome(Map<String,Object> params);
 
    int updateByPrimaryKeySelective(TstCommand record);
 
    int updateByPrimaryKey(TstCommand record);
 
}