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>


  • 相关阅读:
    XML解析
    异步网络请求和JOSN解析
    iOS iOS8新特性-UIAlertController
    iOS8新特性 UIPresentationController(一)
    iOS沙盒(sandbox)机制及获取沙盒路径
    iOS学习之iOS沙盒(sandbox)机制和文件操作(一)
    IOS沙盒机制(SandBox)
    手势(转)
    //快速添加一个视图控制器
    iOS开发常用的网站(转老师的)
  • 原文地址:https://www.cnblogs.com/dream-to-pku/p/5643040.html
Copyright © 2011-2022 走看看