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

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

package cn.easyutil.project.base.dto;

import cn.easyutil.project.base.bean.BaseBean;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;


/**
 * @Author: chen
 * @Date: 2019/4/8 9:47
 */
@ApiModel("编号公共参数")
public class IdDto extends BaseBean {

    @ApiModelProperty(value = "编号",example="1")
    private Long id;
    
	public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy