54 lines
1.0 KiB
Java
54 lines
1.0 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class NSLocale implements Serializable {
|
|
private static final long serialVersionUID = 1;
|
|
private String chineseName;
|
|
private String code;
|
|
private String dial_code;
|
|
private String latin;
|
|
private String name;
|
|
|
|
public String getChineseName() {
|
|
return this.chineseName;
|
|
}
|
|
|
|
public String getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public String getDial_code() {
|
|
return this.dial_code;
|
|
}
|
|
|
|
public String getLatin() {
|
|
return this.latin;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setChineseName(String str) {
|
|
this.chineseName = str;
|
|
}
|
|
|
|
public void setCode(String str) {
|
|
this.code = str;
|
|
}
|
|
|
|
public void setDial_code(String str) {
|
|
this.dial_code = str;
|
|
}
|
|
|
|
public void setLatin(String str) {
|
|
this.latin = str;
|
|
}
|
|
|
|
public void setName(String str) {
|
|
this.name = str;
|
|
}
|
|
}
|