1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ots.project.exam.service;
|
| import com.ots.project.exam.domain.EntTestPackage;
| import com.ots.project.exam.domain.NumberOfUsersByCompany;
|
| /**
| * 可用次数计算组件
| * 一个企业会拥有多个测试包
| * 需要计算出每个测试包的使用次数,并汇总测试总数。
| */
| public interface CountCalculateService {
| /**
| * 计算企业下各个产品包使用次数
| *
| * @param entTestPackage
| * @return
| */
| NumberOfUsersByCompany calculateProductPackagesMemberCount(EntTestPackage entTestPackage);
|
| }
|
|