up_info_video.go 201 B

1234567891011121314
  1. package income
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Signed signed up
  6. type Signed struct {
  7. MID int64
  8. AccountState int
  9. SignedAt time.Time
  10. QuitAt time.Time
  11. IsDeleted int
  12. }