You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
354 B
13 lines
354 B
package model |
|
|
|
// FaceApply face record. |
|
type FaceApply struct { |
|
ID int64 `json:"-"` |
|
Mid int64 `json:"mid"` |
|
OldFace string `json:"old_face"` |
|
NewFace string `json:"new_face"` |
|
ApplyTime int64 `json:"apply_time"` |
|
Status string `json:"status"` |
|
Operator string `json:"operator"` |
|
ModifyTime string `json:"modify_time"` |
|
}
|
|
|