ReasonRuleServiceImpl.java 560 B

1234567891011121314151617181920
  1. package org.jeecg.lg.ReasonRule.service.impl;
  2. import org.jeecg.lg.ReasonRule.entity.ReasonRule;
  3. import org.jeecg.lg.ReasonRule.mapper.ReasonRuleMapper;
  4. import org.jeecg.lg.ReasonRule.service.IReasonRuleService;
  5. import org.springframework.stereotype.Service;
  6. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  7. /**
  8. * @Description: reason_rule
  9. * @Author: jeecg-boot
  10. * @Date: 2025-05-22
  11. * @Version: V1.0
  12. */
  13. @Service
  14. public class ReasonRuleServiceImpl extends ServiceImpl<ReasonRuleMapper, ReasonRule> implements IReasonRuleService {
  15. }