42 lines
675 B
Java
42 lines
675 B
Java
package com.ubt.jimu.controller.data.bean;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AddDirectionItemBean {
|
|
private int a;
|
|
private String b;
|
|
private ItemType c;
|
|
|
|
public enum ItemType {
|
|
TOW_WHEEL,
|
|
FOUR_WHEEL,
|
|
H_SLIDER,
|
|
V_SLIDER,
|
|
ACCUMULATOR,
|
|
SIX_WHEEL
|
|
}
|
|
|
|
public int a() {
|
|
return this.a;
|
|
}
|
|
|
|
public String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public ItemType c() {
|
|
return this.c;
|
|
}
|
|
|
|
public void a(int i) {
|
|
this.a = i;
|
|
}
|
|
|
|
public void a(String str) {
|
|
this.b = str;
|
|
}
|
|
|
|
public void a(ItemType itemType) {
|
|
this.c = itemType;
|
|
}
|
|
}
|