
com.alipay.api.domain.OldListListComplexMockModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 老版本复杂Listlist对象
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:39
*/
public class OldListListComplexMockModel extends AlipayObject {
private static final long serialVersionUID = 6191283735264625467L;
/**
* 复杂模型list
*/
@ApiListField("cm_list")
@ApiField("old_complext_mock_model")
private List cmList;
public List getCmList() {
return this.cmList;
}
public void setCmList(List cmList) {
this.cmList = cmList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy