gunshi-project-ss/src/main/java/com/gunshi/project/xyt/service/SzRuleByLawService.java

22 lines
605 B
Java

package com.gunshi.project.xyt.service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.gunshi.project.xyt.mapper.SzRuleByLawMapper;
import com.gunshi.project.xyt.model.SzRuleByLaw;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* Description:
* Created by XuSan on 2024/9/24.
*
* @author XuSan
* @version 1.0
*/
@Service
@Slf4j
@Transactional(rollbackFor = Exception.class)
public class SzRuleByLawService extends ServiceImpl<SzRuleByLawMapper, SzRuleByLaw> {
}