业务场景: 如果系统集成同步时,需要和对方系统保持编码一致,EAS在默认提交时会引用系统的编码规则,如果需要保存不引用系统规则,需要代码做以下调整;
PersonInfo otherSysPerson = new PersonInfo();//不走编码规则otherSysPerson.put("notNeedGenerateObjectNumber", true);otherSysPerson.setOther(xxx)
本文共 260 字,大约阅读时间需要 1 分钟。
业务场景: 如果系统集成同步时,需要和对方系统保持编码一致,EAS在默认提交时会引用系统的编码规则,如果需要保存不引用系统规则,需要代码做以下调整;
PersonInfo otherSysPerson = new PersonInfo();//不走编码规则otherSysPerson.put("notNeedGenerateObjectNumber", true);otherSysPerson.setOther(xxx)
转载于:https://my.oschina.net/hipanda/blog/1800896