zoukankan      html  css  js  c++  java
  • 工作框架各种使用整理 --创建的时候使用前面创建成功的输出

    <service verb="create" noun="TelecomNumber">
    <in-parameters>
    <auto-parameters entity-name="mantle.party.contact.TelecomNumber" include="nonpk"/>
    <parameter name="partyId" required="true"/>
    <parameter name="contactMechPurposeId" required="true"/>
    </in-parameters>
    <out-parameters>
    <parameter name="contactMechId" required="true"/>
    </out-parameters>
    <actions>
    <entity-make-value entity-name="mantle.party.contact.ContactMech" value-field="contactMech" map="[contactMechTypeEnumId:'CmtTelecomNumber']"/>
    <entity-sequenced-id-primary value-field="contactMech"/>
    <entity-create value-field="contactMech"/>
    <set field="contactMechId" from="contactMech.contactMechId"/>
    <entity-make-value entity-name="mantle.party.contact.TelecomNumber" value-field="telecomNumber"/>
    <set field="telecomNumber.contactMechId" from="contactMech.contactMechId"/>
    <entity-set value-field="telecomNumber" include="nonpk"/>
    <entity-create value-field="telecomNumber"/>
    <service-call name="create#mantle.party.contact.PartyContactMech" in-map="context"/>
    </actions>
    </service>

    等价于 只是不同的写法:
    <service verb="create" noun="TelecomNumber">
    <in-parameters>
    <auto-parameters entity-name="mantle.party.contact.TelecomNumber" include="nonpk"/>
    <parameter name="partyId" required="true"/>
    <parameter name="contactMechPurposeId" required="true"/>
    </in-parameters>
    <out-parameters>
    <parameter name="contactMechId" required="true"/>
    </out-parameters>
    <actions>
    <service-call name="create#mantle.party.contact.ContactMech" out-map="context" in-map="context + [contactMechTypeEnumId:'CmtTelecomNumber']"/>
    <service-call name="create#mantle.party.contact.TelecomNumber" in-map="context"/>
    <service-call name="create#mantle.party.contact.PartyContactMech" in-map="context"/>
    </actions>
    </service>


  • 相关阅读:
    NetCore
    OAuth授权
    Vue混入:全局混入
    Vue作用域插槽:用作循环结构的模版
    Vue作用域插槽:基本用法
    Effect Hook
    State Hook
    表单组件中state依赖props
    Vue自定义指令
    Vue访问子组件实例或子元素
  • 原文地址:https://www.cnblogs.com/dream-to-pku/p/5643040.html
Copyright © 2011-2022 走看看