All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbb.web.common.dto.req.BaseReq Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy