com.alipay.api.response.AlipayEcoPrinterStatusQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.printer.status.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 16:38:04
*/
public class AlipayEcoPrinterStatusQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8213428783314833639L;
/**
* 0离线 1在线 2缺纸
*/
@ApiField("state")
private Long state;
public void setState(Long state) {
this.state = state;
}
public Long getState( ) {
return this.state;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy