mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
15 lines
239 B
Go
15 lines
239 B
Go
package vo
|
|
|
|
import "pandax/apps/develop/entity"
|
|
|
|
/**
|
|
* @Description
|
|
* @Author 熊猫
|
|
* @Date 2022/8/4 15:52
|
|
**/
|
|
|
|
type TableInfoVo struct {
|
|
List []entity.DevGenTableColumn `json:"list"`
|
|
Info entity.DevGenTable `json:"info"`
|
|
}
|