李林
2024-03-04 467697f78bf5c953a81a978e5f2e67737de45569
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yuanchu.mom.service;
 
import com.yuanchu.mom.pojo.StandardMethodList;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
* @author Administrator
* @description 针对表【standard_method_list(标准树下的标准列表)】的数据库操作Service
* @createDate 2024-03-04 13:44:04
*/
public interface StandardMethodListService extends IService<StandardMethodList> {
 
    int addStandardMethodList(Integer standardId, String tree);
 
}