You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
625 B
Java
23 lines
625 B
Java
package com.supervision.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.supervision.model.MaterialLibrary;
|
|
import com.supervision.service.MaterialLibraryService;
|
|
import com.supervision.mapper.MaterialLibraryMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【vp_material_library(素材库表)】的数据库操作Service实现
|
|
* @createDate 2024-01-29 09:52:23
|
|
*/
|
|
@Service
|
|
public class MaterialLibraryServiceImpl extends ServiceImpl<MaterialLibraryMapper, MaterialLibrary>
|
|
implements MaterialLibraryService {
|
|
|
|
}
|
|
|
|
|
|
|
|
|