All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sdn.api.service.business.BusinessCenterServiceTarget Maven / Gradle / Ivy

There is a newer version: 1.2.2.2-RELEASE
Show newest version
package org.sdn.api.service.business;

/**
 * User: fan
 * Date: 2018/12/14
 * Time: 20:04
 */
public interface BusinessCenterServiceTarget {

    /**
     * 增加业务订购操作历史
     *
     * @Method POST
     * @Request ShipHistoryAddReqDTO
     * @Response Msg
     */
    String addBusinessHistory = "businessCenter.business.history.add";

    /**
     * 订购关系列表
     *
     * @Method POST
     * @Request ShipHistoryListReqDTO
     * @Response ShipHistoryResponseDTO
     */
    String shipHistoryList = "businessCenter.business.history.list";


    /**
     * 添加业务
     *
     * @Method POST
     * @Request BusinessInfoAddReqDTO
     * @Response Msg
     */
    String addBusinessInfo = "businessCenter.business.info.add";

    /**
     * 业务删除
     *
     * @Method POST
     * @Request BusinessInfoDelReqDTO
     * @Response Msg
     */
    String delBusinessInfo = "businessCenter.business.info.del";

    /**
     * 业务列表
     *
     * @Method POST
     * @Request BusinessInfoListReqDTO
     * @Response List
     */
    String businessInfolist = "businessCenter.business.info.list.%s";

    /**
     * 更新业务
     *
     * @Method POST
     * @Request BusinessInfoUpdateReqDTO
     * @Response Msg
     */
    String updateBusinessInfo = "businessCenter.business.info.update";

    /**
     * 业务订购单个请求
     *
     * @Method POST
     * @Request BusinessShipSingleAddReqDTO
     * @Response List data
     */
    String businessShipAdd= "businessCenter.business.ship.sdkOperation";

    /**
     * 业务订购批量请求
     *
     * @Method POST
     * @Request BusinessShipBatchAddReqDTO
     * @Response List
     */
    String businessShipBatchAdd = "businessCenter.business.ship.sdkBatchOperation";

    /**
     * 业务订购关系批量通知更新
     *
     * @Method POST
     * @Request BusinessShipBatchNotifyReqDTO
     * @Response List
     */
    String shipBatchNotify = "businessCenter.business.ship.sdkBatchNotify";

    /**
     * 业务订购关系单个通知更新
     *
     * @Method POST
     * @Request BusinessShipSingleNotifyReqDTO
     * @Response List
     */
    String shipNotify = "businessCenter.business.ship.sdkNotify";


    /**
     * 删除业务订购关系
     *
     * @Method POST
     * @Request BusinessShipDelReqDTO
     * @Response BusinessShipResponseDTO
     */
    String delBusinessShip = "businessCenter.business.ship.del";

    /**
     * 查询业务订购
     *
     * @Method POST
     * @Request BusinessShipListReqDTO
     * @Response BusinessShipResponseDTO
     */
    String businessShipList= "businessCenter.business.ship.list";



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy