无关风月
2025-05-08 9486766c806fe1d9e082b2fd02ea1cc558f1b443
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
38
39
40
41
42
43
44
45
46
47
48
49
package com.dsh.other.model.vo.honorVo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 荣誉规则修改对象
 */
@Data
public class EditHonorVO {
    private data type1;
    private data type2;
    private data type3;
    private data type4;
    private data type5;
    private data type6;
 
 
    public static class data {
        private Integer id;
        private Integer type;
        private List<String> condition;
 
        public Integer getId() {
            return id;
        }
 
        public void setId(Integer id) {
            this.id = id;
        }
 
        public Integer getType() {
            return type;
        }
 
        public void setType(Integer type) {
            this.type = type;
        }
 
        public List<String> getCondition() {
            return condition;
        }
 
        public void setCondition(List<String> condition) {
            this.condition = condition;
        }
    }
}