1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.dsh.utils.login;
|
| /**
| * * @author: lihong .
| * * @email: 765907456@qq.com .
| * * @createTime: 2019/10/12 下午5:21 .
| * * @description: 转换.
| **/
| @FunctionalInterface
| public interface Convert<T> {
| /**
| * 转换类
| * @param t
| * @return
| */
| T convert(T t);
| }
|
|