瀏覽代碼

core

master
chenchaod 1 月之前
父節點
當前提交
b43e68fe4e
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      gly-base-core/src/main/java/cn/com/taiji/core/entity/dict/basic/VehicleType.java

+ 4
- 4
gly-base-core/src/main/java/cn/com/taiji/core/entity/dict/basic/VehicleType.java 查看文件

; ;


private String value; private String value;
private int Code;
private int code;


private VehicleType(String value, int code) {
VehicleType(String value, int code) {


this.value = value; this.value = value;
this.Code = code;
this.code = code;
} }


public String getValue() { public String getValue() {


public int getCode() { public int getCode() {


return Code;
return code;
} }


public static VehicleType valueOfCode(int code) { public static VehicleType valueOfCode(int code) {

Loading…
取消
儲存