PatrolInspectionAttendanceMapper.java 347 B

12345678910111213141516
  1. package com.usky.fire.mapper;
  2. import com.usky.fire.domain.PatrolInspectionAttendance;
  3. import com.usky.common.mybatis.core.CrudMapper;
  4. /**
  5. * <p>
  6. * 签到、签退信息记录表 Mapper 接口
  7. * </p>
  8. *
  9. * @author fu
  10. * @since 2024-02-05
  11. */
  12. public interface PatrolInspectionAttendanceMapper extends CrudMapper<PatrolInspectionAttendance> {
  13. }