gdg
2021-01-18 12714c71c7737e21c3268b44a39f8f02befc5cb5
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.OpeApply;
import com.nanometer.smartlab.entity.OpeApplyReserve;
import com.nanometer.smartlab.entity.OpeOrder;
import com.nanometer.smartlab.entity.OpeWarehouseReserve;
 
import org.springframework.dao.DataAccessException;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by johnny on 17/12/8.
 */
public interface OpeApplyDao {
 
    public int updateFirst(Map params) throws DataAccessException;
    public int updateFirst2(Map params) throws DataAccessException;
    public int updateOpeApplyProject(Map params) throws DataAccessException;
 
    public OpeApply getOpeApply(String id) throws DataAccessException;
    public List<OpeApply> getOpeApplyList(Map params) throws DataAccessException;
    public int getOpeApplyTotalCount(Map params) throws DataAccessException;
 
    public void insertOpeApply(OpeApply opeApply) throws DataAccessException;
    public void insertOpeApplyList(List<OpeApply> opeApplyList) throws DataAccessException;
    public int updateOpeApply(OpeApply opeApply) throws DataAccessException;
    public int updateOpeApplyStatus(Map params) throws DataAccessException;
    public int updateOpeApplyAdmin(Map params) throws DataAccessException;
    public int updateOpeApplyAdmin2(Map params) throws DataAccessException;
    public int deleteOpeApply(List<String> ids) throws DataAccessException;
 
    public int updaetOpeApplyPrice(Map params) throws DataAccessException;
    public int updaetOpeApplyStockFlag(Map params) throws DataAccessException;
    public int cancelApply(Map params) throws DataAccessException;
 
    OpeApply selectOpeApplyByPrimaryKey(String id);
 
    public int updateOpeApplyUsed(OpeApplyReserve opeApplyReserve) throws DataAccessException;
 
    @SuppressWarnings("rawtypes")
    List<OpeApplyReserve> getOpeApplyReserveList(Map params) throws DataAccessException;
    @SuppressWarnings("rawtypes")
    int getOpeApplyReserveTotalCount(Map params) throws DataAccessException;
 
    @SuppressWarnings("rawtypes")
    List<OpeApplyReserve> getOpeApplyReserveListFor(Map params) throws DataAccessException;
    @SuppressWarnings("rawtypes")
    int getOpeApplyReserveTotalCountFor(Map params) throws DataAccessException;
 
    List<OpeApply> selectByReId(String id);
    public int updateByReId(Map params);
 
    OpeApplyReserve getOpeApplyDetail(String id);
 
    void updateOpeApplyInfo(Map params);
}