1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.web.pda.lyt.lytPda.service;
|
| import com.app.base.data.ApiResponseResult;
|
| //涂布项目
| public interface CoatItemService {
|
| // 获取主表数据
| public ApiResponseResult getMainTable(String factory, String company,String keyword, int page, int size)
| throws Exception;
|
| // 获取从表数据
| public ApiResponseResult getSubTable(String factory, String company, String mid) throws Exception;
|
| //修改从表数据
| public ApiResponseResult updateSubTable(String factory, String company, String did,
| String stValue,String lowValue,String upValue,String lowPercent,String upPercent,
| String flow, String fup,String lowCon,String upCon) throws Exception;
|
| }
|
|