BasePunishmentStudentHandleServiceImpl.java 634 B

1234567891011121314
  1. package com.xjrsoft.module.student.service.impl;
  2. import com.github.yulichang.base.MPJBaseServiceImpl;
  3. import com.xjrsoft.module.student.entity.BasePunishmentStudentHandle;
  4. import com.xjrsoft.module.student.mapper.BasePunishmentStudentHandleMapper;
  5. import com.xjrsoft.module.student.service.IBasePunishmentStudentHandleService;
  6. import lombok.AllArgsConstructor;
  7. import org.springframework.stereotype.Service;
  8. @Service
  9. @AllArgsConstructor
  10. public class BasePunishmentStudentHandleServiceImpl extends MPJBaseServiceImpl<BasePunishmentStudentHandleMapper, BasePunishmentStudentHandle> implements IBasePunishmentStudentHandleService {
  11. }