BackStatDataMapper.java 418 B

1234567891011121314151617
  1. package com.jiayue.insu.inclientqn.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.jiayue.insu.inclientqn.entity.BackStatData;
  4. import com.jiayue.insu.inclientqn.entity.CorrforeSt;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * 回传统计数据mapper
  8. *
  9. * @author yh
  10. * @date 2022-04-12 19:33:02
  11. */
  12. @Mapper
  13. public interface BackStatDataMapper extends BaseMapper<BackStatData> {
  14. }