啊鑫
2025-04-19 fa41057432882ae94ea4edf816f4f76f1d6fd4ba
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);
 
}