Java 类方法:设置和获取第三方合作协议及备注
/**
* 设置:第三方合作协议
*/
public void setThirdPartyAgreement(String thirdPartyAgreement) {
this.thirdPartyAgreement = thirdPartyAgreement;
}
/**
* 获取:第三方合作协议
*/
public String getThirdPartyAgreement() {
return thirdPartyAgreement;
}
/**
* 设置:备注
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* 获取:备注
*/
public String getRemark() {
return remark;
}
原文地址: https://www.cveoy.top/t/topic/likX 著作权归作者所有。请勿转载和采集!