com.github.houbb.web.common.dto.req.BaseReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.dto.req;
import java.io.Serializable;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class BaseReq implements Serializable {
/**
* 加签
* @since 0.0.1
*/
private String checksum;
public String getChecksum() {
return checksum;
}
public void setChecksum(String checksum) {
this.checksum = checksum;
}
}