package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
@TableName(value = "tb_softcode")
|
@Alias("Softcode")
|
public class Softcode {
|
|
private Integer num;
|
|
@ApiModelProperty("软件id")
|
private String softId;
|
|
@ApiModelProperty("源码路径")
|
private String codeUrl;
|
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public String getSoftId() {
|
return softId;
|
}
|
|
public void setSoftId(String softId) {
|
this.softId = softId;
|
}
|
|
public String getCodeUrl() {
|
return codeUrl;
|
}
|
|
public void setCodeUrl(String codeUrl) {
|
this.codeUrl = codeUrl;
|
}
|
}
|