plat_tablecols_config.go 826 B

1234567891011121314151617181920212223
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package plat
  5. import (
  6. "dashoo.cn/micro/app/model/plat/internal"
  7. )
  8. // PlatTablecolsConfig is the golang structure for table plat_tablecols_config.
  9. type PlatTablecolsConfig internal.PlatTablecolsConfig
  10. // Fill with you ideas below.
  11. type SearchPlatTablecolsConfigReq struct {
  12. Table string `json:"table" v:"required#表名不能为空"`
  13. }
  14. type PlatTablecolsConfigReq struct {
  15. Id int `json:"id"` // 主键
  16. Table string `json:"table" v:"required#表名不能为空"` // 表
  17. Columns string `json:"columns" v:"required#显示列不能为空"` // 显示列
  18. }