database.go 229 B

1234567891011
  1. package model
  2. type DBCommonVO struct {
  3. Family string `json:"family" binding:"required"`
  4. Key string `json:"key" binding:"required"`
  5. }
  6. type DBActionVO struct {
  7. DBCommonVO
  8. Value string `json:"value" binding:"required"`
  9. }