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;
|
}
|
}
|
}
|