whyclxw
2025-02-27 fd2df156fa69470b15ccf88b3c9f5a2e6c72bd57
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("软件名称")
    private String fileName;
 
    @ApiModelProperty("源码路径")
    private String codeUrl;
 
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getCodeUrl() {
        return codeUrl;
    }
 
    public void setCodeUrl(String codeUrl) {
        this.codeUrl = codeUrl;
    }
}