face.go 354 B

12345678910111213
  1. package model
  2. // FaceApply face record.
  3. type FaceApply struct {
  4. ID int64 `json:"-"`
  5. Mid int64 `json:"mid"`
  6. OldFace string `json:"old_face"`
  7. NewFace string `json:"new_face"`
  8. ApplyTime int64 `json:"apply_time"`
  9. Status string `json:"status"`
  10. Operator string `json:"operator"`
  11. ModifyTime string `json:"modify_time"`
  12. }