工程结算
This commit is contained in:
parent
6a0a5289e6
commit
63b99da50a
|
|
@ -54,10 +54,10 @@ public class SltAgreementInfoController extends BaseController {
|
|||
* 根据条件获取协议结算列表
|
||||
*/
|
||||
@ApiOperation(value = "根据条件获取协议结算列表")
|
||||
@GetMapping("/getSltAgreementInfo")
|
||||
public TableDataInfo getSltAgreementInfo(SltAgreementInfo bean) {
|
||||
@GetMapping("/getSltAgreementInfo4Project")
|
||||
public TableDataInfo getSltAgreementInfo4Project(SltAgreementInfo bean) {
|
||||
startPage();
|
||||
List<SltAgreementInfo> list = sltAgreementInfoService.getSltAgreementInfo(bean);
|
||||
List<SltAgreementInfo> list = sltAgreementInfoService.getSltAgreementInfo4Project(bean);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public interface ISltAgreementInfoService {
|
|||
*/
|
||||
public List<SltAgreementInfo> selectSltAgreementInfoList(SltAgreementInfo sltAgreementInfo);
|
||||
|
||||
public List<SltAgreementInfo> getSltAgreementInfo(SltAgreementInfo bean);
|
||||
public List<SltAgreementInfo> getSltAgreementInfo4Project(SltAgreementInfo bean);
|
||||
|
||||
public SltInfoVo getSltInfo(List<SltAgreementInfo> list);
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ public class SltAgreementInfoServiceImpl implements ISltAgreementInfoService {
|
|||
}
|
||||
|
||||
@Override
|
||||
public List<SltAgreementInfo> getSltAgreementInfo(SltAgreementInfo bean) {
|
||||
public List<SltAgreementInfo> getSltAgreementInfo4Project(SltAgreementInfo bean) {
|
||||
return sltAgreementInfoMapper.getSltAgreementInfo4Project(bean);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue