2
liusuyi
2026-05-12 9b5c9db9189493fbc6db48f55a7b7311b2a3253c
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
package com.ard.qs.domain;
 
public class Preset {
    private Integer index;
    private String name;
 
    public Preset() {
    }
 
    public Preset(Integer index, String name) {
        this.index = index;
        this.name = name;
    }
 
    public Integer getIndex() {
        return index;
    }
 
    public void setIndex(Integer index) {
        this.index = index;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
}