info.go 279 B

123456789101112
  1. package family
  2. import (
  3. "git.sxidc.com/go-framework/baize/framework/core/application"
  4. )
  5. type Info struct {
  6. application.InfoIDField
  7. Father string `json:"father" sqlresult:"column:father"`
  8. Mother string `json:"mother" sqlresult:"column:mother"`
  9. application.InfoTimeFields
  10. }