Commit 4da694c9 by guojuxing

门店选择器自定义属性时间类型

parent 22a03a7e
......@@ -50,4 +50,13 @@ public enum StoreFieldDateEnum {
public String getFormat() {
return format;
}
public static StoreFieldDateEnum getByCode(int code){
for(StoreFieldDateEnum transactType : values()){
if (transactType.getCode() == code) {
return transactType;
}
}
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