package com.gs.xky.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gs.xky.entity.TblBarcodeInformation;
|
|
/**
|
* @author 28567
|
* @description 针对表【TBL_BARCODE_INFORMATION(条码信息表)】的数据库操作Mapper
|
* @createDate 2025-02-12 12:52:06
|
* @Entity com.gs.xky.entity.TblBarcodeInformation
|
*/
|
public interface TblBarcodeInformationMapper extends BaseMapper<TblBarcodeInformation> {
|
|
}
|