1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package cn.ksource.web.service;
|
| public interface BillReportCodeService {
|
| /**
| * 日常运维记录单编号
| * @param customerId
| * @return
| */
| public String getDailyOperationCode(String customerId);
|
| /**
| * 日常巡检报告编号
| * @param customerId
| * @return
| */
| public String getDailyPatrolCode(String customerId);
|
| /**
| * 运维周报编号
| * @param customerId
| * @return
| */
| public String getDailyOperationWeeklyCode(String customerId);
|
| /**
| * 客户满意度调查单据编号
| * @param partnerId
| * @return
| */
| public String getCustomerSatisCode(String partnerId);
| }
|
|