统一GrpU8查询接口
This commit is contained in:
parent
a083af8a79
commit
0f8232cee9
|
@ -202,6 +202,7 @@ public class AcctVouchInfoServiceImpl extends BaseService<AcctVouchInfoEntity, S
|
||||||
senderGlPznrEntity.setDataSourceCode(entity.getDataSourceCode());
|
senderGlPznrEntity.setDataSourceCode(entity.getDataSourceCode());
|
||||||
senderGlPznrEntity.setIdpzh(entity.getIdpzh());
|
senderGlPznrEntity.setIdpzh(entity.getIdpzh());
|
||||||
List<SenderGlPznrEntity> list = senderGlPznrDao.querySenderGlPznrEntityByIdpzh(senderGlPznrEntity);
|
List<SenderGlPznrEntity> list = senderGlPznrDao.querySenderGlPznrEntityByIdpzh(senderGlPznrEntity);
|
||||||
|
senderGlPzmlEntity.setSenderGlPznrEntities(list);
|
||||||
//查询辅助核算
|
//查询辅助核算
|
||||||
if(list != null && list.size() > 0){
|
if(list != null && list.size() > 0){
|
||||||
GlFzxzlEntityDto glFzxzlEntityDto = new GlFzxzlEntityDto();
|
GlFzxzlEntityDto glFzxzlEntityDto = new GlFzxzlEntityDto();
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
package com.hzya.frame.grpU8.nxproof.glPzml.entity;
|
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 com.hzya.frame.web.entity.BaseEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (GlPzml)实体类
|
* (GlPzml)实体类
|
||||||
*
|
*
|
||||||
|
@ -53,7 +56,7 @@ public class SenderGlPzmlEntity extends BaseEntity {
|
||||||
private String pzsbm;
|
private String pzsbm;
|
||||||
private String stamp;
|
private String stamp;
|
||||||
private String yspzje;
|
private String yspzje;
|
||||||
|
private List<SenderGlPznrEntity> senderGlPznrEntities;
|
||||||
public String getPzsbm() {
|
public String getPzsbm() {
|
||||||
return pzsbm;
|
return pzsbm;
|
||||||
}
|
}
|
||||||
|
@ -366,6 +369,12 @@ public class SenderGlPzmlEntity extends BaseEntity {
|
||||||
this.yspzzs = yspzzs;
|
this.yspzzs = yspzzs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<SenderGlPznrEntity> getSenderGlPznrEntities() {
|
||||||
|
return senderGlPznrEntities;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSenderGlPznrEntities(List<SenderGlPznrEntity> senderGlPznrEntities) {
|
||||||
|
this.senderGlPznrEntities = senderGlPznrEntities;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue