Initial commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user