doum
8 小时以前 f2b6fdd955f8ac6e5b351e0b5e3a9f583ed6da2e
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
package com.doumee.config.xyy.vo;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 批量添加或删除打印机结果
 *
 * @author RabyGao
 * @date Aug 7, 2019
 */
@Data
public class PrinterResult {
 
    public PrinterResult() {
        success = new ArrayList<>();
        fail = new ArrayList<>();
        failMsg=new ArrayList<>();
    }
 
    /**
     * 成功的打印机编号集合
     */
    private List<String> success;
 
    /**
     * 失败的打印机编号集合
     */
    private List<String> fail;
    /**
     * 失败原因集合  设备编号:失败原因
     */
    private List<String> failMsg ;
 
}