12345678910111213141516171819 |
- package com.xjrsoft.module.banding.service.impl;
- import com.github.yulichang.base.MPJBaseServiceImpl;
- import com.xjrsoft.module.banding.entity.BandingRule;
- import com.xjrsoft.module.banding.mapper.BandingRuleMapper;
- import com.xjrsoft.module.banding.service.IBandingRuleService;
- import lombok.AllArgsConstructor;
- import org.springframework.stereotype.Service;
- /**
- * @title: 新生分班规则
- * @Author dzx
- * @Date: 2024-07-01
- * @Version 1.0
- */
- @Service
- @AllArgsConstructor
- public class BandingRuleServiceImpl extends MPJBaseServiceImpl<BandingRuleMapper, BandingRule> implements IBandingRuleService {
- }
|