Commit 05df0579 by shuhu.hou@freemud.cn

修改枚举类OrderClientType

parent b6899d0e
......@@ -57,4 +57,13 @@ public enum OrderClientType {
this.name = name;
}
public OrderClientType getOrderClientType(Integer index){
for (OrderClientType orderType : values()){
if (index.equals(orderType.getIndex())){
return orderType;
}
}
return null;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment