1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.product.integration.service.idel;
|
|
| import com.product.core.entity.FieldSetEntity;
|
| /**
| * 实现功能:
| *
| * @author 作者[夜丶光]
| * @version 1.0.00 2025-12-01 11:15
| */
| public interface IInterfaceIntegrationService {
| /**
| * 保存
| * @param fse
| * @return
| */
| String save(FieldSetEntity fse);
| }
|
|