24 lines
608 B
Java
24 lines
608 B
Java
|
|
package com.gunshi.project.hsz.service;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
|
import com.gunshi.project.hsz.mapper.ResProjectImgMapper;
|
||
|
|
import com.gunshi.project.hsz.model.ResProjectImg;
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
import org.springframework.transaction.annotation.Transactional;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 水库工程图片
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-07-08 17:30:38
|
||
|
|
*/
|
||
|
|
@Service
|
||
|
|
@Slf4j
|
||
|
|
@Transactional(rollbackFor = Exception.class)
|
||
|
|
public class ResProjectImgService extends ServiceImpl<ResProjectImgMapper, ResProjectImg>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|