PersonnelHealthyMapper.java 382 B

12345678910111213141516
  1. package com.xjrsoft.module.personnel.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.personnel.entity.PersonnelHealthy;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: 人员健康信息表
  7. * @Author dzx
  8. * @Date: 2024-07-23
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface PersonnelHealthyMapper extends MPJBaseMapper<PersonnelHealthy> {
  13. }