TAppDirPicServiceImpl.java 799 Bytes
Newer Older
yangtianyou's avatar
yangtianyou committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
package cn.wisenergy.chnmuseum.party.service.impl;

import cn.wisenergy.chnmuseum.party.model.TAppDirPic;
import cn.wisenergy.chnmuseum.party.mapper.TAppDirPicMapper;
import cn.wisenergy.chnmuseum.party.service.TAppDirPicService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;

import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.beans.factory.annotation.Autowired;

/**
 * <pre>
 *  服务实现类
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-29
 */
@Slf4j
@Service
public class TAppDirPicServiceImpl extends ServiceImpl<TAppDirPicMapper, TAppDirPic> implements TAppDirPicService {

    @Autowired
    private TAppDirPicMapper tAppDirPicMapper;

}