Sop管理

This commit is contained in:
2026-04-23 14:23:43 +08:00
parent a99b1b5b09
commit 54f2053d45
6 changed files with 380 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.SopManagementMy;
import java.util.Map;
/**
* SOP知识库管理服务
*/
public interface ISopManagementMyService extends IService<SopManagementMy> {
Map<String, Object> add(SopManagementMy entity);
Map<String, Object> update(SopManagementMy entity);
Map<String, Object> deleteById(String id);
Map<String, Object> pageQuery(Integer current, Integer size, String title, String category, String industry,
String creator, String status);
}