1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.product.badge.service.idel;
|
| import com.product.core.entity.FieldSetEntity;
|
| /**
| * Copyright © 6c
| *
| * @Date: 2021-06-03 11:54
| * @Author: 6c
| * @Description:
| */
| public interface IBadgeBorrowService {
| String borrow(FieldSetEntity fse);
| }
|
|