BillIsolateMapper.java 298 B

12345678910111213141516
  1. package com.huimv.receive.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.huimv.receive.entity.BillIsolate;
  4. /**
  5. * <p>
  6. * 隔离 Mapper 接口
  7. * </p>
  8. *
  9. * @author author
  10. * @since 2023-07-21
  11. */
  12. public interface BillIsolateMapper extends BaseMapper<BillIsolate> {
  13. }