feat: 扩展rest-bean能力,支持提供表格,表格前端支持状态切换

This commit is contained in:
wangyu 2021-03-22 23:56:29 +08:00
parent 60f66900c2
commit 58c20deb65
1 changed files with 8 additions and 0 deletions

View File

@ -6,4 +6,12 @@ package com.flyfish.framework.domain.base;
* @param <T> 泛型
*/
public interface Vo<T> {
/**
* 赋值从po转换的逻辑
*
* @param po 数据库实体
* @return 结果
*/
Vo<T> from(T po);
}