Commit e38be8e9 by 徐高华

Merge branch 'master_xgh_pendingid' into 'developer'

unionid

See merge request !315
parents bc5e5688 43d6f316
......@@ -30,8 +30,11 @@ public class MemberUnionRelatedServiceImpl implements MemberUnionRelatedService
dto.setCreateTime(new Date());
dto.setUpdateTime(new Date());
dto.setMemberUnionidRelatedId(StringUtil.randomUUID());
String unionid = dto.getUnionid() ;
// unionid不保存,但需要传递
dto.setUnionid(null);
mapper.insert(EntityUtil.changeEntityByJSON(MemberUnionidRelated.class, dto));
dto.setUnionid(unionid);
return dto.getMemberUnionidRelatedId();
}
......
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