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

com.aliyun.dingtalkfinance_1_0.models.QueryRegisterOrderRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryRegisterOrderRequest extends TeaModel {
    // 主机构编号
    @NameInMap("instId")
    public String instId;

    // 申请单号,和外部流水号至少一个必填
    @NameInMap("orderId")
    public String orderId;

    // 外部流水号,和申请单编号至少一个必填
    @NameInMap("outTradeNo")
    public String outTradeNo;

    // 子机构编号
    @NameInMap("subInstId")
    public String subInstId;

    public static QueryRegisterOrderRequest build(java.util.Map map) throws Exception {
        QueryRegisterOrderRequest self = new QueryRegisterOrderRequest();
        return TeaModel.build(map, self);
    }

    public QueryRegisterOrderRequest setInstId(String instId) {
        this.instId = instId;
        return this;
    }
    public String getInstId() {
        return this.instId;
    }

    public QueryRegisterOrderRequest setOrderId(String orderId) {
        this.orderId = orderId;
        return this;
    }
    public String getOrderId() {
        return this.orderId;
    }

    public QueryRegisterOrderRequest setOutTradeNo(String outTradeNo) {
        this.outTradeNo = outTradeNo;
        return this;
    }
    public String getOutTradeNo() {
        return this.outTradeNo;
    }

    public QueryRegisterOrderRequest setSubInstId(String subInstId) {
        this.subInstId = subInstId;
        return this;
    }
    public String getSubInstId() {
        return this.subInstId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy