Blame view

src/main/java/com/huaheng/api/U8/Service/ICSShipmentHeaderServiceImpl.java 858 Bytes
pengcheng authored
1
package com.huaheng.api.U8.Service;
pengcheng authored
2
pengcheng authored
3
4
import com.huaheng.api.U8.domain.ICSShipmentHeader;
import com.huaheng.pc.shipment.shipmentHeader.mapper.ShipmentHeaderMapper;
pengcheng authored
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import org.springframework.stereotype.Service;

import javax.annotation.Resource;

/**
 * 出库下发或回传单主 服务层实现
 *
 * @author huaheng
 * @date 2018-12-17
 */
@Service
public class ICSShipmentHeaderServiceImpl implements ICSShipmentHeaderService {

    @Resource
pengcheng authored
19
    private ShipmentHeaderMapper icsShipmentHeaderMapper;
pengcheng authored
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

    //查询主单
    @Override
    public ICSShipmentHeader selectModel(ICSShipmentHeader condition) {
        return icsShipmentHeaderMapper.selectModel(condition);
    }

    //添加出库下发主单
    @Override
    public int insertModel(ICSShipmentHeader condition) {
        return icsShipmentHeaderMapper.insertModel(condition);
    }


}