Commit 834f0b88 by shuhu.hou@freemud.cn

Merge branch 'feature/v1.9.9_农工商订单结算&撤销' into develop

parents f1c54ee1 05df0579
......@@ -61,4 +61,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