Blame view

src/main/java/com/huaheng/api/U8/Service/ICSShipmentHeaderService.java 393 Bytes
pengcheng authored
1
package com.huaheng.api.U8.Service;
pengcheng authored
2
pengcheng authored
3
import com.huaheng.api.U8.domain.ICSShipmentHeader;
pengcheng authored
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * 出库下发或回传单主 服务层
 *
 * @author huaheng
 * @date 2018-12-14
 */
public interface ICSShipmentHeaderService {

    //查询主单
    ICSShipmentHeader selectModel(ICSShipmentHeader condition);

    //添加出库下发主单
    int insertModel(ICSShipmentHeader condition);

}