com.alipay.api.domain.ListListSmMockModel 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
alipay-sdk project for Spring Project
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;
/**
* 简单模型嵌套list
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:42
*/
public class ListListSmMockModel extends AlipayObject {
private static final long serialVersionUID = 3728838884166842919L;
/**
* 简单模型列表
*/
@ApiListField("list_simple_model_list")
@ApiField("simple_mock_model")
private List listSimpleModelList;
public List getListSimpleModelList() {
return this.listSimpleModelList;
}
public void setListSimpleModelList(List listSimpleModelList) {
this.listSimpleModelList = listSimpleModelList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy