BandingRuleServiceImpl.java 606 B

12345678910111213141516171819
  1. package com.xjrsoft.module.banding.service.impl;
  2. import com.github.yulichang.base.MPJBaseServiceImpl;
  3. import com.xjrsoft.module.banding.entity.BandingRule;
  4. import com.xjrsoft.module.banding.mapper.BandingRuleMapper;
  5. import com.xjrsoft.module.banding.service.IBandingRuleService;
  6. import lombok.AllArgsConstructor;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * @title: 新生分班规则
  10. * @Author dzx
  11. * @Date: 2024-07-01
  12. * @Version 1.0
  13. */
  14. @Service
  15. @AllArgsConstructor
  16. public class BandingRuleServiceImpl extends MPJBaseServiceImpl<BandingRuleMapper, BandingRule> implements IBandingRuleService {
  17. }