1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.changhong.epc.count.service.system;
|
| import com.changhong.epc.bean.count.format.FormInfo;
| import com.changhong.epc.bean.count.format.SystemFunFormInfo;
|
| /**
| * 计算系统变量
| */
| public interface IExpendSystemCount {
|
| /**
| * 计算系统变量
| * @param systemFunFormInfo
| * @return
| */
| FormInfo systemCount(SystemFunFormInfo systemFunFormInfo);
|
| }
|
|