| 1234567891011121314151617181920 |
- package com.ydtech.modules.inv.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ydtech.modules.inv.model.po.InvSource;
- /**
- * @author Administrator
- * @description 针对表【inv_source(来源表)】的数据库操作Mapper
- * @createDate 2024-01-20 10:28:34
- * @Entity com.ydtech.modules.inv.model.po.InvSource
- */
- public interface InvSourceMapper extends BaseMapper<InvSource> {
- Integer syncStatus();
- Integer dataMatching();
- }
|