
com.alipay.api.domain.AlipayBossBaseProcessInstanceQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询流程实例
*
* @author auto create
* @since 1.0, 2017-03-03 11:29:50
*/
public class AlipayBossBaseProcessInstanceQueryModel extends AlipayObject {
private static final long serialVersionUID = 3568926753932224949L;
/**
* 流程全局唯一ID
*/
@ApiField("puid")
private String puid;
public String getPuid() {
return this.puid;
}
public void setPuid(String puid) {
this.puid = puid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy