Commit 06861450 authored by alex yao's avatar alex yao

feat

parent 850d9688
...@@ -101,6 +101,11 @@ public class AgentApplicationMallServiceImpl implements AgentApplicationMallServ ...@@ -101,6 +101,11 @@ public class AgentApplicationMallServiceImpl implements AgentApplicationMallServ
return null; return null;
} }
Integer publishId = agentApplicationPublishEntity.getId(); Integer publishId = agentApplicationPublishEntity.getId();
return bizAgentApplicationMallService.getByAgentPublishId(publishId); BizAgentApplicationMallEntity mallEntity = bizAgentApplicationMallService.getByAgentPublishId(publishId);
if (mallEntity == null) {
mallEntity = new BizAgentApplicationMallEntity();
mallEntity.setAgentPublishId(publishId);
}
return mallEntity;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment