gunshi-project-ss/src/main/java/com/gunshi/project/ss/service/AttSpillwayBaseService.java

24 lines
606 B
Java

package com.gunshi.project.ss.service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.gunshi.project.ss.mapper.AttSpillwayBaseMapper;
import com.gunshi.project.ss.model.AttSpillwayBase;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* 描述: 溢洪道
* author: xusan
* date: 2024-07-08 17:30:37
*/
@Service
@Slf4j
@Transactional(rollbackFor = Exception.class)
public class AttSpillwayBaseService extends ServiceImpl<AttSpillwayBaseMapper, AttSpillwayBase>
{
}