啊鑫
2025-02-15 ccbf66ef68ea3c96d81dd2c456824900b5020eeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gs.xky.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gs.xky.dto.BarcodeDeliveryNo;
import com.gs.xky.entity.TblBarcodeInformation;
 
import java.util.List;
 
/**
 * @author 28567
 * @description 针对表【TBL_BARCODE_INFORMATION(条码信息表)】的数据库操作Service
 * @createDate 2025-02-12 12:52:06
 */
public interface TblBarcodeInformationService extends IService<TblBarcodeInformation> {
 
    boolean SaveBarcodeInformation(List<BarcodeDeliveryNo> barcodeList, String deliveryNo);
 
}