统一GrpU8查询接口

This commit is contained in:
lvleigang 2024-08-28 11:54:54 +08:00
parent a083af8a79
commit 0f8232cee9
2 changed files with 11 additions and 1 deletions

View File

@ -202,6 +202,7 @@ public class AcctVouchInfoServiceImpl extends BaseService<AcctVouchInfoEntity, S
senderGlPznrEntity.setDataSourceCode(entity.getDataSourceCode());
senderGlPznrEntity.setIdpzh(entity.getIdpzh());
List<SenderGlPznrEntity> list = senderGlPznrDao.querySenderGlPznrEntityByIdpzh(senderGlPznrEntity);
senderGlPzmlEntity.setSenderGlPznrEntities(list);
//查询辅助核算
if(list != null && list.size() > 0){
GlFzxzlEntityDto glFzxzlEntityDto = new GlFzxzlEntityDto();

View File

@ -1,8 +1,11 @@
package com.hzya.frame.grpU8.nxproof.glPzml.entity;
import com.hzya.frame.grpU8.nxproof.glPznr.entity.SenderGlPznrEntity;
import com.hzya.frame.web.entity.BaseEntity;
import java.util.List;
/**
* (GlPzml)实体类
*
@ -53,7 +56,7 @@ public class SenderGlPzmlEntity extends BaseEntity {
private String pzsbm;
private String stamp;
private String yspzje;
private List<SenderGlPznrEntity> senderGlPznrEntities;
public String getPzsbm() {
return pzsbm;
}
@ -366,6 +369,12 @@ public class SenderGlPzmlEntity extends BaseEntity {
this.yspzzs = yspzzs;
}
public List<SenderGlPznrEntity> getSenderGlPznrEntities() {
return senderGlPznrEntities;
}
public void setSenderGlPznrEntities(List<SenderGlPznrEntity> senderGlPznrEntities) {
this.senderGlPznrEntities = senderGlPznrEntities;
}
}