whyclxw
2025-02-26 6b390f3225ca3084df8afc515ff07a638dc15f80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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;
    }
}