jyy
2021-01-26 2c25c956ee0dc781500c70c7479c36f8b58f3445
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
package com.matrix.system.hive.dao;
  
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
import com.matrix.system.hive.bean.SysSupplierType;
import com.matrix.core.pojo.PaginationVO;
 
 
/**
 *
 * @date 2016-07-18 11:21
 */
 
 
public interface SysSupplierTypeDao{
 
    public int insert(SysSupplierType sysSupplierType);
       
    public int update(SysSupplierType sysSupplierType);
    
    public int deleteByIds(@Param("list") List<Long> list);
    
    public int deleteById(Long iD);
    
    public List<SysSupplierType> selectInPage(@Param("record") SysSupplierType sysSupplierType, @Param("pageVo") PaginationVO pageVo);
 
    public List<SysSupplierType> selectByModel(@Param("record") SysSupplierType sysSupplierType);
    
    public int  selectTotalRecord(@Param("record") SysSupplierType sysSupplierType);
    
    public SysSupplierType  selectById(Long iD);
    
}