935090232@qq.com
2021-11-21 59634aeabb04aae0e819bd4c5fe909bb9cdbeb28
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
42
package com.matrix.system.hive.dao;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.SysInstoreDetail;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
 
/**
 *
 * @date 2016-07-15 13:10
 */
 
 
public interface SysInstoreDetailDao{
 
    public int insert(SysInstoreDetail sysInstoreDetail);
       
    public int update(SysInstoreDetail sysInstoreDetail);
    
    public int deleteByIds(@Param("list") List<Long> list);
    
    public int deleteById(Long id);
    
    public List<SysInstoreDetail> selectInPage(@Param("record") SysInstoreDetail sysInstoreDetail, @Param("pageVo") PaginationVO pageVo);
 
    public List<SysInstoreDetail> selectByModel(@Param("record") SysInstoreDetail sysInstoreDetail);
    
    public int  selectTotalRecord(@Param("record") SysInstoreDetail sysInstoreDetail);
    
    public SysInstoreDetail  selectById(Long id);
    /**
     * 根据入库单id删除入库单明细
     * @author jiangyouyao
     */
    public void deleteByInstoreId(Long id);
 
    public void batchInsert(List<SysInstoreDetail> addList);
 
    public List<SysInstoreDetail>  selectByOrderId(Long instoreId);
}