
com.alipay.api.domain.CraftsmanSubAssessment 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-01-13 16:27:52
*/
public class CraftsmanSubAssessment extends AlipayObject {
private static final long serialVersionUID = 1529478381598237417L;
/**
* 子评分
*/
@ApiField("score")
private Long score;
/**
* 子评分项名
*/
@ApiField("title")
private String title;
public Long getScore() {
return this.score;
}
public void setScore(Long score) {
this.score = score;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy