package com.changhong.epc.count.controller;
|
|
import javax.annotation.Resource;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMethod;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import com.changhong.epc.constter.count.nomr.CountUrlConst;
|
import com.changhong.epc.count.service.system.performer.IFormulaHandle;
|
import com.changhong.epc.count.service.system.performer.impl.FunctionParam;
|
|
@RestController
|
public class TestRest implements CountUrlConst{
|
|
@Resource
|
private IFormulaHandle formulaHandle;
|
|
@RequestMapping(value="test", method={RequestMethod.OPTIONS, RequestMethod.POST})
|
public Object test(){
|
FunctionParam param = new FunctionParam();
|
// 上下文
|
param.initData(null);
|
// 函数ID
|
param.prepare(3);
|
|
return formulaHandle.execute(param);
|
|
}
|
}
|