Blame view

src/main/java/com/huaheng/pc/shipment/shipmentDetail/service/ShipmentDetailService.java 561 Bytes
1
2
package com.huaheng.pc.shipment.shipmentDetail.service;
pengcheng authored
3
import com.huaheng.framework.web.domain.AjaxResult;
4
5
6
7
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetail;
import com.baomidou.mybatisplus.extension.service.IService;
public interface ShipmentDetailService extends IService<ShipmentDetail>{
pengcheng authored
8
9
10
11
12
13
14
15
16
17
18
19
    /**
     * 新增出库明细
     *
     * @param shipmentDetail
     * @return
     */
    AjaxResult insertDetail(ShipmentDetail shipmentDetail);

    AjaxResult deleteDetail(String id);

    Integer countUnCompleted(Integer shipmentId);
20
21

}