responsiblePerson.go 716 B

1234567891011121314151617181920
  1. package typeManage
  2. type ResponsiblePerson struct {
  3. Id int64 `json:"id"`
  4. Img string `json:"img"`
  5. Name string `json:"name"`
  6. Nickname string `json:"nickname"`
  7. DepartmentName string `json:"department_name"`
  8. MobilePhoneNumber string `json:"mobile_phone_number"`
  9. GameCounts int64 `json:"game_counts"`
  10. Custodians string `json:"custodians"`
  11. Remark string `json:"remark"`
  12. State int8 `json:"state"`
  13. PushStatus int8 `json:"push_status"`
  14. CreateTime LocalTime `gorm:"column:create_time;" json:"createTime"`
  15. UpdateTime LocalTime `gorm:"column:update_time;" json:"updateTime"`
  16. }