| 21 | } |
| 22 | |
| 23 | type DocumentHistorySimpleResult struct { |
| 24 | HistoryId int `json:"history_id"` |
| 25 | ActionName string `json:"action_name"` |
| 26 | MemberId int `json:"member_id"` |
| 27 | Account string `json:"account"` |
| 28 | Nickname string `json:"nickname"` |
| 29 | ModifyAt int `json:"modify_at"` |
| 30 | ModifyName string `json:"modify_name"` |
| 31 | ModifyTime time.Time `json:"modify_time"` |
| 32 | Version int64 `json:"version"` |
| 33 | } |
| 34 | |
| 35 | // TableName 获取对应数据库表名. |
| 36 | func (m *DocumentHistory) TableName() string { |
nothing calls this directly
no outgoing calls
no test coverage detected