package com.zt.common.db.constant; /** * 字段排序方向。 * *
 * 
*/ public enum OrderType { ASC, DESC; public static OrderType fromString(String value) { try { return OrderType.valueOf(value.toUpperCase()); } catch (Exception e) { return ASC; } } }