subscriber_on_pbx_params.go 303 B

1234567891011121314
  1. package utModels
  2. //go:generate reform --gofmt=false
  3. import (
  4. "github.com/xaionaro-go/extime"
  5. )
  6. //reform:gyro.siteuser_params
  7. type SubscriberOnPBXParams struct {
  8. EmpGUID int `reform:"EmpGUID,pk"`
  9. LastMissedCallsLookupDate extime.Time `reform:"last_missed_calls_lookup"`
  10. }