工程结算

This commit is contained in:
sxu 2024-12-05 16:53:48 +08:00
parent 6a0a5289e6
commit 63b99da50a
3 changed files with 5 additions and 5 deletions

View File

@ -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);
}

View File

@ -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);

View File

@ -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);
}