com.aliyun.dc.opplat.sdk.api.SignItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dc-opplat-sdk-java Show documentation
Show all versions of dc-opplat-sdk-java Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/**
* Alipay.com Inc. Copyright (c) 2004-2020 All Rights Reserved.
*/
package com.aliyun.dc.opplat.sdk.api;
import java.io.Serializable;
/**
* 签名类型
*
* @author changlei.qcl
* @version $Id: SignItem.java, v 0.1 2020年07月28日 9:11 PM changlei.qcl Exp $
*/
public class SignItem implements Serializable {
private static final long serialVersionUID = -7388592201934097218L;
/**
* 签名源串
*/
private String signSourceDate;
/**
* 签名
*/
private String sign;
/**
* Getter method for property signSourceDate.
*
* @return property value of signSourceDate
*/
public String getSignSourceDate() {
return signSourceDate;
}
/**
* Setter method for property signSourceDate.
*
* @param signSourceDate value to be assigned to property signSourceDate
*/
public void setSignSourceDate(String signSourceDate) {
this.signSourceDate = signSourceDate;
}
/**
* Getter method for property sign.
*
* @return property value of sign
*/
public String getSign() {
return sign;
}
/**
* Setter method for property sign.
*
* @param sign value to be assigned to property sign
*/
public void setSign(String sign) {
this.sign = sign;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy