1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ibeetl.admin.core.util.beetl;
|
| import org.beetl.core.Context;
| import org.beetl.core.Function;
|
| import com.ibeetl.admin.core.util.UUIDUtil;
|
| public class UUIDFunction implements Function {
|
| @Override
| public String call(Object[] arg0, Context arg1) {
| return UUIDUtil.uuid();
| }
|
| }
|
|