Blame view

src/main/java/com/huaheng/api/U8/Service/ICSShipmentDetailService.java 510 Bytes
pengcheng authored
1
package com.huaheng.api.U8.Service;
pengcheng authored
2
3
pengcheng authored
4
import com.huaheng.api.U8.domain.ICSShipmentDetail;
pengcheng authored
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.util.List;

/**
 * 出库下发或回传子单 服务层
 *
 * @author huaheng
 * @date 2018-12-14
 */
public interface ICSShipmentDetailService {

    //查询子单
    ICSShipmentDetail selectModel(ICSShipmentDetail condition);

    //查询子单列表
    List<ICSShipmentDetail> selectList(ICSShipmentDetail condition);

    //添加出库下发子单
    int insertModel(ICSShipmentDetail record);

}