Blame view

src/main/java/com/huaheng/pc/shipment/shipmentHeader/mapper/ShipmentHeaderMapper.java 612 Bytes
tangying authored
1
2
package com.huaheng.pc.shipment.shipmentHeader.mapper;
mahuandong authored
3
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
游杰 authored
4
import com.huaheng.pc.receipt.receiptHeader.domain.ReceiptHeader;
tangying authored
5
6
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;
7
8
import java.util.List;
mahuandong authored
9
public interface ShipmentHeaderMapper extends BaseMapper<ShipmentHeader> {
pengcheng authored
10
11
12
13
14
15
16

    /**
     *  生成出库单编码
     * @return
     */
    String createCode(String shipmentType);
17
18
    List<ShipmentHeader> selectListByCreated();
游杰 authored
19
20
21
22
23
24
    /**
     *  获得最新出库单
     * @return
     */
    List<ShipmentHeader> getLatestShipment();
mahuandong authored
25
}