com.dahuatech.icc.cirs.model.v202209.material.MaterialByIdResponse Maven / Gradle / Ivy
package com.dahuatech.icc.cirs.model.v202209.material;
import com.dahuatech.icc.oauth.http.IccResponse;
/**
* program:java-sdk
*
* @Author: 355079
* @Date:2022-09-06 15:00
* @Description:
*/
public class MaterialByIdResponse extends IccResponse {
private String retCode;
private String retMsg;
public String getRetCode() {
return retCode;
}
public void setRetCode(String retCode) {
this.retCode = retCode;
}
public String getRetMsg() {
return retMsg;
}
public void setRetMsg(String retMsg) {
this.retMsg = retMsg;
}
@Override
public String toString() {
return "MaterialByIdResponse{"
+"retCode"
+retCode
+ "retMsg="
+retMsg
+ '}';
}
}