wuzeyu
2024-12-13 dd2259bcc1cfe4e31f297af3df1e94d2b95d7476
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dy.pipIrrBase.rtuUpgrade.task;
 
import lombok.Data;
 
/**
 * @Author: liurunyu
 * @Date: 2024/11/7 16:02
 * @Description
 */
@Data
public class UgRtuAddSomeResVo {
    public Integer successAddTotal ;//添加成功数
    public Integer failRepeatAddTotal ;//因重复添加而失败总数
 
    public UgRtuAddSomeResVo() {
        this.successAddTotal = 0;
        this.failRepeatAddTotal = 0;
    }
}