InvSourceMapper.java 463 B

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