无关风月
2025-01-21 8f2abbbda6c87c59d0c2c5da9979e78ea38e74db
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.dsh.course.feignClient.other.model;
 
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 type;
        private List<String> condition;
        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;
        }
    }
}