PicConfigService.java 490 Bytes
package com.viontech.storage.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.viontech.storage.mapper.PicConfigMapper;
import com.viontech.storage.model.PicConfig;
import org.springframework.stereotype.Service;

/**
 * .
 *
 * @author 谢明辉
 * @date 2021/11/8
 */

@Service
public class PicConfigService extends ServiceImpl<PicConfigMapper,PicConfig> implements IService<PicConfig> {
}