1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.yuanchu.mom.service;
|
| import com.yuanchu.mom.pojo.Standard;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.yuanchu.mom.pojo.dto.StandardDto;
|
| /**
| * @author Administrator
| * @description 针对表【standard】的数据库操作Service
| * @createDate 2023-07-26 15:59:05
| */
| public interface StandardService extends IService<Standard> {
|
| /**
| * (3级)新增-->标准,型号
| * @param standardDto
| */
| String addStandard(StandardDto standardDto,Integer spId,Integer ver);
| }
|
|