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

cn.easyutil.project.base.dto.StatusDto Maven / Gradle / Ivy

package cn.easyutil.project.base.dto;

import io.swagger.annotations.ApiModelProperty;

public class StatusDto {

    @ApiModelProperty(value = "0-false  1-true",example = "0")
    private Integer status;

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy