Blame view

src/main/java/com/huaheng/pc/receipt/receiptDetail/service/ReceiptDetailService.java 550 Bytes
mahuandong authored
1
2
package com.huaheng.pc.receipt.receiptDetail.service;
mahuandong authored
3
import com.huaheng.framework.web.domain.AjaxResult;
mahuandong authored
4
5
6
7
import com.huaheng.pc.receipt.receiptDetail.domain.ReceiptDetail;
import com.baomidou.mybatisplus.extension.service.IService;
public interface ReceiptDetailService extends IService<ReceiptDetail>{
mahuandong authored
8
    AjaxResult saveReceiptDetaial(ReceiptDetail receiptDetail);
mahuandong authored
9
10
    AjaxResult updateReceiptDetaial(ReceiptDetail receiptDetail);
11
12
13

    ReceiptDetail queryflow(ReceiptDetail receiptDetail);
14
    void updateReceiptHeaderLastStatus(Integer id);
mahuandong authored
15
}