叶松
2023-09-27 e1e25f4f7fa6b7e31c7f0567cc3744fb3ee6ba98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.thhy.mobile.modules.biz.repo.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class RepoListVo implements Serializable {
 
    private String repoId;
 
    private String repoName;
 
    private int ringCount;
 
    private int unitCount;
 
    private int pipeCount;
 
    private int timeCount;
}