com.dingtalk.baymax.framework.sdk.mercury.card.RecallCardReq Maven / Gradle / Ivy
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;
}
}