com.alipay.api.domain.AlipayChinareModelResult 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 中再核保查询结果
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:39
*/
public class AlipayChinareModelResult extends AlipayObject {
private static final long serialVersionUID = 8384943133624553743L;
/**
* 体检记录id
*/
@ApiField("id")
private String id;
/**
* 规则id
*/
@ApiField("rule_id")
private String ruleId;
/**
* 核保结果
*/
@ApiField("rule_result")
private String ruleResult;
/**
* 交易流水记录id
*/
@ApiField("trans_id")
private String transId;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getRuleResult() {
return this.ruleResult;
}
public void setRuleResult(String ruleResult) {
this.ruleResult = ruleResult;
}
public String getTransId() {
return this.transId;
}
public void setTransId(String transId) {
this.transId = transId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy