com.alipay.api.domain.AlipayIserviceIsresourceGroupquerybygroupidQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 通过技能组id查询技能组
*
* @author auto create
* @since 1.0, 2023-07-10 10:04:06
*/
public class AlipayIserviceIsresourceGroupquerybygroupidQueryModel extends AlipayObject {
private static final long serialVersionUID = 7248824926468193192L;
/**
* 技能组id
*/
@ApiField("skill_group_id")
private String skillGroupId;
/**
* 租户id
*/
@ApiField("tnt_inst_id")
private String tntInstId;
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public String getTntInstId() {
return this.tntInstId;
}
public void setTntInstId(String tntInstId) {
this.tntInstId = tntInstId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy