info.go 217 B

1234567891011
  1. package student
  2. import (
  3. "git.sxidc.com/go-framework/baize/framework/core/application"
  4. )
  5. type Info struct {
  6. application.InfoIDField
  7. Name string `json:"name" sqlresult:"column:name"`
  8. application.InfoTimeFields
  9. }