Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

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