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

com.dingtalk.baymax.framework.sdk.mercury.card.RecallCardReq Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.dingtalk.baymax.framework.sdk.mercury.card;

import java.io.Serializable;

public class RecallCardReq implements Serializable {
    private String bizId;

    public RecallCardReq() {
    }

    public RecallCardReq(String bizId) {
        this.bizId = bizId;
    }

    public String getBizId() {
        return bizId;
    }

    public void setBizId(String bizId) {
        this.bizId = bizId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy