| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package plat
- import (
- "dashoo.cn/micro/app/model/plat/internal"
- )
- // PlatTablecolsConfig is the golang structure for table plat_tablecols_config.
- type PlatTablecolsConfig internal.PlatTablecolsConfig
- // Fill with you ideas below.
- type SearchPlatTablecolsConfigReq struct {
- Table string `json:"table" v:"required#表名不能为空"`
- }
- type PlatTablecolsConfigReq struct {
- Id int `json:"id"` // 主键
- Table string `json:"table" v:"required#表名不能为空"` // 表
- Columns string `json:"columns" v:"required#显示列不能为空"` // 显示列
- }
|