whyclxw
2025-03-13 c28472d6003463ed1552d2ccecc31c3b4bb6edf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.whyc.dto;
 
import com.whyc.pojo.Software;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class SoftDto implements Serializable {
    private String fileUrl;
    private String fileName;
    private String codeName;
    private Integer lockFlag;
    private Integer codeFlag;
    private Integer codeNum;
    private List<Software> softwares;
}