1234567891011121314151617181920 |
- package org.jeecg.lg.ReasonRule.service.impl;
- import org.jeecg.lg.ReasonRule.entity.ReasonRule;
- import org.jeecg.lg.ReasonRule.mapper.ReasonRuleMapper;
- import org.jeecg.lg.ReasonRule.service.IReasonRuleService;
- import org.springframework.stereotype.Service;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- /**
- * @Description: reason_rule
- * @Author: jeecg-boot
- * @Date: 2025-05-22
- * @Version: V1.0
- */
- @Service
- public class ReasonRuleServiceImpl extends ServiceImpl<ReasonRuleMapper, ReasonRule> implements IReasonRuleService {
- }
|