fish-admin icon indicating copy to clipboard operation
fish-admin copied to clipboard

fish-admin is simple development boilerplate based on fish-ui

Results 2 fish-admin issues
Sort by recently updated
recently updated
newest added

```java public abstract String[] columnNames(); public abstract int[] columnTypes(); ``` 改成 ```java public abstract Map columns(); ``` 这样在仓储层写起来比较直观地看出每个字段和其相应的类型: ```java @Override public Map columns() { return ImmutableMap.builder() .put("user_name", Types.VARCHAR) .put("role_id", Types.BIGINT)...

I follow the instructions, starting the back end with bootRun, and using npm to install and start the dev server. I get directed to http://localhost:8082/, and the browser displays Cannot...